Skip to content

Commit

Permalink
misc: rename lanyard.build -> lanyard.org (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
worm-emoji authored Aug 26, 2022
1 parent 122579b commit 140f3c3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

Create an allow list in seconds that works across web3

[lanyard.build](https://lanyard.build)
[lanyard.org](https://lanyard.org)
4 changes: 2 additions & 2 deletions merkle/tree.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// A merkle tree for [lanyard.build].
// A merkle tree for [lanyard.org].
// merkle uses keccak256 hashing for leaves
// and intermediary nodes and therefore is vulnerable to a
// second preimage attack. This package does not duplicate or pad leaves in
Expand All @@ -7,7 +7,7 @@
// see the following [bitcoin issue].
//
// [bitcoin issue]: https://bitcointalk.org/index.php?topic=102395.0
// [lanyard.build]: https://lanyard.build
// [lanyard.org]: https://lanyard.org
package merkle

import (
Expand Down
2 changes: 1 addition & 1 deletion www/.env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
API_URL=https://lanyard.build
API_URL=https://lanyard.org
8 changes: 4 additions & 4 deletions www/components/Docs/codeSnippets.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const createCode = `
POST https://lanyard.build/api/v1/tree
POST https://lanyard.org/api/v1/tree
// Request body
{
Expand All @@ -21,7 +21,7 @@ POST https://lanyard.build/api/v1/tree
`.trim()

export const lookupCode = `
GET https://lanyard.build/api/v1/tree?root={root}
GET https://lanyard.org/api/v1/tree?root={root}
// Response body
{
Expand All @@ -38,7 +38,7 @@ GET https://lanyard.build/api/v1/tree?root={root}
`.trim()

export const proofCode = `
GET https://lanyard.build/api/v1/proof?root={root}&unhashedLeaf={unhashedLeaf}
GET https://lanyard.org/api/v1/proof?root={root}&unhashedLeaf={unhashedLeaf}
// Response body
{
Expand All @@ -52,7 +52,7 @@ GET https://lanyard.build/api/v1/proof?root={root}&unhashedLeaf={unhashedLeaf}

export const rootCode = `
// proof is 0x prefixed, comma separated values
GET https://lanyard.build/api/v1/root?proof={proof}
GET https://lanyard.org/api/v1/root?proof={proof}
// Response body
{
Expand Down
2 changes: 1 addition & 1 deletion www/components/Layout/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function Layout({ children }: Props) {
<MetaTags
description={siteDescription}
// og:image spec requires full url, can't use path for image
imageUrl="https://lanyard.build/meta-image.png"
imageUrl="https://lanyard.org/meta-image.png"
/>
<Head />

Expand Down

1 comment on commit 140f3c3

@vercel
Copy link

@vercel vercel bot commented on 140f3c3 Aug 26, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

lanyard – ./

lanyard-git-main.context.wtf
allowlist.context.wtf
lanyard.context.wtf

Please sign in to comment.