File tree Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Expand file tree Collapse file tree 5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 22
33Create an allow list in seconds that works across web3
44
5- [ lanyard.build ] ( https://lanyard.build )
5+ [ lanyard.org ] ( https://lanyard.org )
Original file line number Diff line number Diff line change 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
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
1111package merkle
1212
1313import (
Original file line number Diff line number Diff line change 1- API_URL = https://lanyard.build
1+ API_URL = https://lanyard.org
Original file line number Diff line number Diff line change 11export 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
2323export 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
4040export 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
5353export 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{
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments