From 435811eda97bd189070fef669d3807c4e2781297 Mon Sep 17 00:00:00 2001
From: Elon Moist CEO <30165296+coinyeezy@users.noreply.github.com>
Date: Mon, 19 Feb 2024 16:36:05 -0500
Subject: [PATCH 01/12] added mission statement to README.md (#13)
---
README.md | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/README.md b/README.md
index 11f26d4..4bdfc03 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,25 @@
+# [Yours.org](http://Yours.org) Mission Statement
+
+**Yours.org: Open-Sourced Bitcoin Technology**
+
+At Yours.org, we believe Bitcoin is the foundation to a brighter future. We are creating decentralized solutions for communication, trade, and data management. Our mission is to facilitate connections directly between individuals, bypassing the need for intermediaries and empowering anyone to use [yours.org](http://yours.org) resources to build Your own products and services. We're dedicated to crafting a platform that is not only secure and transparent but also universally accessible, enhancing development efficiency and fostering stable advancements within the Bitcoin ecosystem. Yours.org is an open-source endeavor, inviting everyone to download, modify, enhance, and contribute, ensuring that everything we do is truly owned by You, the creator.
+
+**Our Vision:**
+
+- To achieve seamless integration of services within the Bitcoin ecosystem, enhancing cross-platform interoperability.
+- To create an environment where creatives, developers, and entrepreneurs can thrive and contribute.
+- To offer an intuitive products and tooling that welcomes newcomers, allowing them to tap into the vast possibilities Bitcoin offers, irrespective of their investment or pre-conceived idea about what Bitcoin is.
+- To ensure all data on Yours.org is securely stored on Bitcoin and retrievable directly from the blockchain, promoting transparency and interoperability.
+- To enable direct user interactions, communication, and trading with the innovative use of Bitcoin transactions, eliminating or minimizing the need for third-parties.
+
+**Get Involved:**
+
+You can be a part of the Hyperbitcoinization movement by visiting the Yours.org GitHub repository: https://github.com/YoursOrg.
+
+Together, we can make Bitcoin great again.
+
+
+
## Getting Started
First, run the development server:
From c55e6e8a2f40c802770462049576e1b4ae4d40f5 Mon Sep 17 00:00:00 2001
From: Zachary Weiner
Date: Mon, 19 Feb 2024 18:30:13 -0500
Subject: [PATCH 02/12] Enhance Chain Info Display with Processed Tip and
Reusable Blockheight Component (#16)
Co-authored-by: Zack Wins
---
src/app/chart.tsx | 2 ++
src/components/blockheight.tsx | 21 +++++++++++++++++++++
src/utils/hooks/useChainInfo.tsx | 5 +++--
3 files changed, 26 insertions(+), 2 deletions(-)
create mode 100644 src/components/blockheight.tsx
diff --git a/src/app/chart.tsx b/src/app/chart.tsx
index b1881f2..9714969 100644
--- a/src/app/chart.tsx
+++ b/src/app/chart.tsx
@@ -6,6 +6,7 @@ import React, { useEffect, useRef } from 'react'
import formatNumber from '@/utils/format-number'
import useExchangeRate from '@/utils/hooks/useExchangeRate'
import classNames from 'classnames'
+import Blockheight from '@/components/blockheight'
const TABS = ['1h', '4h', '6h', '12h', '1D']
@@ -269,6 +270,7 @@ export default function Chart(props: {
+ );
+};
+
+export default Blockheight;
\ No newline at end of file
diff --git a/src/utils/hooks/useChainInfo.tsx b/src/utils/hooks/useChainInfo.tsx
index f4ad324..97b9f52 100644
--- a/src/utils/hooks/useChainInfo.tsx
+++ b/src/utils/hooks/useChainInfo.tsx
@@ -14,9 +14,10 @@ export default function useChainInfo() {
)
const tip = (data?.blocks) || 0
+
const historyTip = lockHistoryData ? parseInt(lockHistoryData?.slice(-1)?.[0]?.height, 10) : 0
-
+ const lastProcessed = historyTip;
console.log({ tip, historyTip, blockDiff: tip - historyTip })
- return { data, isLoading }
+ return { data, isLoading, lastProcessed}
}
From 2a7777c2a9348674432d5e52b84b0537ed4c65f6 Mon Sep 17 00:00:00 2001
From: chrisconfirm <131307502+chrisconfirm@users.noreply.github.com>
Date: Tue, 20 Feb 2024 21:10:39 +0700
Subject: [PATCH 03/12] Update README.md (#20)
---
README.md | 41 ++++++++++++++++++++++++++---------------
1 file changed, 26 insertions(+), 15 deletions(-)
diff --git a/README.md b/README.md
index 4bdfc03..5af78ec 100644
--- a/README.md
+++ b/README.md
@@ -22,18 +22,29 @@ Together, we can make Bitcoin great again.
## Getting Started
-First, run the development server:
-
-```bash
-npm run dev
-# or
-yarn dev
-# or
-pnpm dev
-# or
-bun dev
-```
-
-Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
-
-You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
+**Requirements:**
+- package manager, such as npm, yarn, pnpm or bun
+- node.js
+
+**Run yours.org locally:**
+1) Download yours.org zipfile from github and extract.
+2) Open filepath in shell or cmd:
+ ```bash
+ cd /frontend-master
+ ```
+4) Run the development server:
+ ```bash
+ npm run dev
+ # or
+ yarn dev
+ # or
+ pnpm dev
+ # or
+ bun dev
+ ```
+5) Wait for start localhost and wait for compile to finish
+6) Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
+
+**Edit yours.org:**
+- You can start editing the page by modifying `app/page.tsx`.
+- The page auto-updates as you edit the file.
From 66431ec6a2cfcd0712bb0f8916252b267ee76444 Mon Sep 17 00:00:00 2001
From: Zachary Weiner
Date: Tue, 20 Feb 2024 09:11:58 -0500
Subject: [PATCH 04/12] Using Standarized Styles for Blockheight Component
(#19)
Co-authored-by: Zack Wins
---
src/components/blockheight.tsx | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/components/blockheight.tsx b/src/components/blockheight.tsx
index 30f81b7..d649ab5 100644
--- a/src/components/blockheight.tsx
+++ b/src/components/blockheight.tsx
@@ -5,17 +5,17 @@ const Blockheight: React.FC = () => {
const { data, isLoading, lastProcessed } = useChainInfo();
return (
-
+
{isLoading ? (
-
Loading chain info...
+
Loading chain info...
) : (
-
-
Block Height:
-
{lastProcessed} / {data?.blocks}
+
+ Block height
+ {lastProcessed} / {data?.blocks}
)}
);
};
-export default Blockheight;
\ No newline at end of file
+export default Blockheight;
From 6e9cbd3d876fe870926db71293029a7ca5f87ced Mon Sep 17 00:00:00 2001
From: Randy <48290359+rxxndy@users.noreply.github.com>
Date: Tue, 20 Feb 2024 08:13:25 -0600
Subject: [PATCH 05/12] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 5af78ec..81fde1f 100644
--- a/README.md
+++ b/README.md
@@ -14,7 +14,7 @@ At Yours.org, we believe Bitcoin is the foundation to a brighter future. We are
**Get Involved:**
-You can be a part of the Hyperbitcoinization movement by visiting the Yours.org GitHub repository: https://github.com/YoursOrg.
+You can be a part of the Hyperbitcoinization movement by visiting the Yours.org GitHub repository: https://github.com/yours-org/frontend
Together, we can make Bitcoin great again.
From 5efeafd1410255780ceae0ce8b692afa84c8a14e Mon Sep 17 00:00:00 2001
From: Dan Wagner
Date: Mon, 26 Feb 2024 11:56:14 -0800
Subject: [PATCH 06/12] chore: add MIT liscense
---
LICENSE.md | 9 +++++++++
README.md | 4 ++++
2 files changed, 13 insertions(+)
create mode 100644 LICENSE.md
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000..0608185
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,9 @@
+MIT License
+
+Copyright (c) Twetch, Inc. and affiliates.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the โSoftwareโ), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED โAS ISโ, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\ No newline at end of file
diff --git a/README.md b/README.md
index 81fde1f..28f76eb 100644
--- a/README.md
+++ b/README.md
@@ -48,3 +48,7 @@ Together, we can make Bitcoin great again.
**Edit yours.org:**
- You can start editing the page by modifying `app/page.tsx`.
- The page auto-updates as you edit the file.
+
+### License
+
+Yours.org is [MIT licensed](./LICENSE.md).
From dd6ca1a25a0c3b97632ec6dc42b8fa5b4a358b38 Mon Sep 17 00:00:00 2001
From: Randy <48290359+rxxndy@users.noreply.github.com>
Date: Mon, 26 Feb 2024 14:49:29 -0600
Subject: [PATCH 07/12] Update README.md
---
README.md | 3 +++
1 file changed, 3 insertions(+)
diff --git a/README.md b/README.md
index 28f76eb..0bbdfb7 100644
--- a/README.md
+++ b/README.md
@@ -49,6 +49,9 @@ Together, we can make Bitcoin great again.
- You can start editing the page by modifying `app/page.tsx`.
- The page auto-updates as you edit the file.
+**Open Source Design**
+https://www.figma.com/community/file/1337515124574956282/yours-design-system
+
### License
Yours.org is [MIT licensed](./LICENSE.md).
From 25b720e119ae27f9b1dabed2318da7aea27199b9 Mon Sep 17 00:00:00 2001
From: NlockTime <159491556+NlockTime@users.noreply.github.com>
Date: Mon, 26 Feb 2024 19:52:45 -0800
Subject: [PATCH 08/12] Update header.tsx (#22)
---
src/app/header.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/app/header.tsx b/src/app/header.tsx
index 922a222..0c08773 100644
--- a/src/app/header.tsx
+++ b/src/app/header.tsx
@@ -13,7 +13,7 @@ export default function Header() {