Skip to content

Commit 140f3c3

Browse files
authored
misc: rename lanyard.build -> lanyard.org (#53)
1 parent 122579b commit 140f3c3

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
Create an allow list in seconds that works across web3
44

5-
[lanyard.build](https://lanyard.build)
5+
[lanyard.org](https://lanyard.org)

merkle/tree.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// A merkle tree for [lanyard.build].
1+
// A merkle tree for [lanyard.org].
22
// merkle uses keccak256 hashing for leaves
33
// and intermediary nodes and therefore is vulnerable to a
44
// second preimage attack. This package does not duplicate or pad leaves in
@@ -7,7 +7,7 @@
77
// see the following [bitcoin issue].
88
//
99
// [bitcoin issue]: https://bitcointalk.org/index.php?topic=102395.0
10-
// [lanyard.build]: https://lanyard.build
10+
// [lanyard.org]: https://lanyard.org
1111
package merkle
1212

1313
import (

www/.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
API_URL=https://lanyard.build
1+
API_URL=https://lanyard.org

www/components/Docs/codeSnippets.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const createCode = `
2-
POST https://lanyard.build/api/v1/tree
2+
POST https://lanyard.org/api/v1/tree
33
44
// Request body
55
{
@@ -21,7 +21,7 @@ POST https://lanyard.build/api/v1/tree
2121
`.trim()
2222

2323
export const lookupCode = `
24-
GET https://lanyard.build/api/v1/tree?root={root}
24+
GET https://lanyard.org/api/v1/tree?root={root}
2525
2626
// Response body
2727
{
@@ -38,7 +38,7 @@ GET https://lanyard.build/api/v1/tree?root={root}
3838
`.trim()
3939

4040
export const proofCode = `
41-
GET https://lanyard.build/api/v1/proof?root={root}&unhashedLeaf={unhashedLeaf}
41+
GET https://lanyard.org/api/v1/proof?root={root}&unhashedLeaf={unhashedLeaf}
4242
4343
// Response body
4444
{
@@ -52,7 +52,7 @@ GET https://lanyard.build/api/v1/proof?root={root}&unhashedLeaf={unhashedLeaf}
5252

5353
export const rootCode = `
5454
// proof is 0x prefixed, comma separated values
55-
GET https://lanyard.build/api/v1/root?proof={proof}
55+
GET https://lanyard.org/api/v1/root?proof={proof}
5656
5757
// Response body
5858
{

www/components/Layout/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default function Layout({ children }: Props) {
1414
<MetaTags
1515
description={siteDescription}
1616
// og:image spec requires full url, can't use path for image
17-
imageUrl="https://lanyard.build/meta-image.png"
17+
imageUrl="https://lanyard.org/meta-image.png"
1818
/>
1919
<Head />
2020

0 commit comments

Comments
 (0)