From f52eb8e8ac314e265b31dadf31dc8c132545f0aa Mon Sep 17 00:00:00 2001 From: PixelPilot <161360836+PixelPil0t1@users.noreply.github.com> Date: Mon, 17 Mar 2025 10:33:19 +0100 Subject: [PATCH 1/6] Update pre-push --- .husky/pre-push | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.husky/pre-push b/.husky/pre-push index 0739a3de4..3fa61339f 100755 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -23,9 +23,9 @@ if [ -n "$(git status --porcelain)" ]; then git add . # Create a commit with a descriptive message - git commit -m "Auto-fix: Update breadcrumbs, spelling dictionary and other automated fixes" + git commit -m "Auto-fix: Updated breadcrumbs, spelling dictionary and other automated fixes" echo "✅ Changes committed automatically. Continuing with push..." else echo "✅ No changes needed. Continuing with push..." -fi \ No newline at end of file +fi From 92c999c86d4ed828694729f70ff0675b6f202ba6 Mon Sep 17 00:00:00 2001 From: PixelPilot <161360836+PixelPil0t1@users.noreply.github.com> Date: Mon, 17 Mar 2025 10:40:51 +0100 Subject: [PATCH 2/6] Update growthbook.ts --- lib/growthbook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/growthbook.ts b/lib/growthbook.ts index 7df2b35da..8907078a1 100644 --- a/lib/growthbook.ts +++ b/lib/growthbook.ts @@ -3,7 +3,7 @@ import { GrowthBook } from '@growthbook/growthbook-react'; export const growthbook = new GrowthBook({ apiHost: process.env.NEXT_PUBLIC_GROWTHBOOK_API_HOST || '', - clientKey: process.env.NEXT_PUBLIC_GROWTHBOOK_CLIENT_KEY || '' + clientKey: process.env.NEXT_PUBLIC_GROWTHBOOK_CLIENT_KEY || '', }); if (process.env.NEXT_PUBLIC_GROWTHBOOK_API_HOST && process.env.NEXT_PUBLIC_GROWTHBOOK_CLIENT_KEY) { From 2abba6979779809a8c290eabc20c11c3d5e89efd Mon Sep 17 00:00:00 2001 From: PixelPilot <161360836+PixelPil0t1@users.noreply.github.com> Date: Mon, 17 Mar 2025 10:55:54 +0100 Subject: [PATCH 3/6] Update content-reuse.md --- notes/content-reuse.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/content-reuse.md b/notes/content-reuse.md index b0b45f24c..60ef1b5b2 100644 --- a/notes/content-reuse.md +++ b/notes/content-reuse.md @@ -30,7 +30,7 @@ Text after ### How to Use Multiple Reusable Content Components -1. You can create a `index.js` file in the `content` directories and export +1. You can create an `index.js` file in the `content` directory and export the components like this: ``` From a9c471e77d3639993de29cfcb46bf95aa17a3f08 Mon Sep 17 00:00:00 2001 From: PixelPilot <161360836+PixelPil0t1@users.noreply.github.com> Date: Mon, 17 Mar 2025 11:11:01 +0100 Subject: [PATCH 4/6] Update nft-tools.mdx --- pages/app-developers/tools/build/nft-tools.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/app-developers/tools/build/nft-tools.mdx b/pages/app-developers/tools/build/nft-tools.mdx index 66e7db469..cdae7d154 100644 --- a/pages/app-developers/tools/build/nft-tools.mdx +++ b/pages/app-developers/tools/build/nft-tools.mdx @@ -38,7 +38,7 @@ These tools are available on OP Mainnet: ## Feature comparison - This list was last updated early February 2024, but new features are implemented all the time. + This list was last updated in early February 2024, but new features are implemented all the time. | | NiftyKit | NFT-Inator | Mintplex | Zero Code NFT | thirdweb | Crossmint | From 1f7aee4d8188203c85b034877d05cdb110c6b38e Mon Sep 17 00:00:00 2001 From: PixelPilot <161360836+PixelPil0t1@users.noreply.github.com> Date: Mon, 17 Mar 2025 11:12:13 +0100 Subject: [PATCH 5/6] Update oracles.mdx --- pages/app-developers/tools/build/oracles.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/app-developers/tools/build/oracles.mdx b/pages/app-developers/tools/build/oracles.mdx index 537a597d2..a598dd69b 100644 --- a/pages/app-developers/tools/build/oracles.mdx +++ b/pages/app-developers/tools/build/oracles.mdx @@ -2,7 +2,7 @@ title: Oracles description: >- Learn about different oracles and how you can use them to access offchain data - onchain as well as random number generation. + onchain as well as for random number generation. lang: en-US content_type: guide topic: oracles From fa91503553bfbb0060753ce85e3d2754df675076 Mon Sep 17 00:00:00 2001 From: PixelPilot <161360836+PixelPil0t1@users.noreply.github.com> Date: Mon, 17 Mar 2025 11:27:14 +0100 Subject: [PATCH 6/6] Update oracles.mdx --- pages/app-developers/tools/build/oracles.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/app-developers/tools/build/oracles.mdx b/pages/app-developers/tools/build/oracles.mdx index a598dd69b..bc9d49e63 100644 --- a/pages/app-developers/tools/build/oracles.mdx +++ b/pages/app-developers/tools/build/oracles.mdx @@ -1,4 +1,4 @@ ---- +RNG--- title: Oracles description: >- Learn about different oracles and how you can use them to access offchain data @@ -48,7 +48,7 @@ There are two types of oracles: 2. Single-transaction oracles, which only require one transaction. The way this works is that the transaction that requests the information includes a callback (address and the call data to provide it). When the oracle is updated (which also happens through a transaction, but one that is not sent by the user), the oracle uses the callback to inform a contract of the result. -## Random number generation (RGN) +## Random number generation (RNG) Random number generation in blockchain applications ensures that smart contracts can access unbiased random values. This is essential for certain use cases like generative NFTs, gaming, commit & reveal schemes and more. Various approaches include using a trusted third party, blockhash-based methods, Verifiable Random Functions (VRF), quantum random numbers to name a few. Each method has trade-offs between simplicity, security, and trust assumptions, allowing developers to select the most suitable option for their use case.