Skip to content

Commit 2516f6e

Browse files
committed
initial fixes
1 parent 3a0b877 commit 2516f6e

20 files changed

+97
-513
lines changed

404.html

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>404 - Page Not Found</title>
7+
<style>
8+
body {
9+
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
10+
line-height: 1.6;
11+
color: #333;
12+
max-width: 800px;
13+
margin: 0 auto;
14+
padding: 2rem;
15+
text-align: center;
16+
display: flex;
17+
flex-direction: column;
18+
justify-content: center;
19+
min-height: 80vh;
20+
}
21+
h1 {
22+
font-size: 2.5rem;
23+
margin-bottom: 1rem;
24+
color: #111111;
25+
}
26+
p {
27+
font-size: 1.2rem;
28+
margin-bottom: 2rem;
29+
}
30+
a {
31+
display: inline-block;
32+
background-color: #111111;
33+
color: white;
34+
text-decoration: none;
35+
padding: 0.75rem 1.5rem;
36+
border-radius: 4px;
37+
font-weight: 500;
38+
transition: background-color 0.2s ease;
39+
}
40+
a:hover {
41+
background-color: #333333;
42+
}
43+
@media (prefers-color-scheme: dark) {
44+
body {
45+
background-color: #121212;
46+
color: #f5f5f5;
47+
}
48+
h1 {
49+
color: #f5f5f5;
50+
}
51+
}
52+
</style>
53+
</head>
54+
<body>
55+
<main>
56+
<h1>Oops! Page Not Found</h1>
57+
<p>The page you're looking for doesn't exist. Let's get you back on track.</p>
58+
<a href="/">Go to Homepage</a>
59+
</main>
60+
</body>
61+
</html>

api-references/analytics/overview.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ curl 'https://api.sequence.build/rpc/Builder/WalletsTotal' \
3838

3939
### More Examples
4040
Now that you've gotten started - try out a few of our other examples:
41-
- [Fetch wallets within a time interval](/api/analytics/examples/wallets#fetch-wallets-for-a-time-interval-for-a-project-id)
42-
- [Fetch transactions by wallets](/api/analytics/examples/wallets#fetch-transactions-by-wallets)
43-
- [Fetch wallets by device](/api/analytics/examples/wallets#fetch-wallets-by-device)
44-
- [Fetch transactions on your Sequence Marketplace](/api/analytics/examples/marketplace#fetch-transactions-on-your-marketplace)
41+
- [Fetch wallets within a time interval](/api-references/analytics/examples/wallets#fetch-wallets-for-a-time-interval-for-a-project-id)
42+
- [Fetch transactions by wallets](/api-references/analytics/examples/wallets#fetch-transactions-by-wallets)
43+
- [Fetch wallets by device](/api-references/analytics/examples/wallets#fetch-wallets-by-device)
44+
- [Fetch transactions on your Sequence Marketplace](/api-references/analytics/examples/marketplace#fetch-transactions-on-your-marketplace)

api-references/builder/overview.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ sidebarTitle: Overview
55

66
The Sequence Builder API for interfacing with items on Sequence Builder programmatically.
77

8-
Check out our API References [here](/api/builder/endpoints) to get started.
8+
Check out our API References [here](/api-references/builder/endpoints) to get started.

api-references/marketplace/examples/orderbook-transactions.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ await signer.sendTransaction([txApprove, tx]);
8484

8585
## Accept a Request
8686

87-
In order to accept an existing request, one would need to use one of the `get` requests endpoints (like [getTopOrders](/api-references-references-references-references-references/marketplace/examples/get-top-orders)) to acquire a `orderId` inputted into the `requestId` parameter to submit a transaction, with a prior transaction of approving the currency for the request.
87+
In order to accept an existing request, one would need to use one of the `get` requests endpoints (like [getTopOrders](/api-references/marketplace/examples/get-top-orders)) to acquire a `orderId` inputted into the `requestId` parameter to submit a transaction, with a prior transaction of approving the currency for the request.
8888

8989
A batched transaction can be performed to fullfill this requirement of currency approval (transaction 1), while also sending the transaction for the fullfillment of the request (transaction 2).
9090

api-references/metadata.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: The Sequence Metadata API service allows for querying, managing, an
1212
The Sequence Metadata API service offers a simple and fast API to query, manage, and update collections, token & NFT metadata for Ethereum-compatible chains.
1313

1414
<Note>
15-
Our Metadata service is managed through [Sequence Builder Console](HTTPS://SEQUENCE.BUILD) and requires a Service Account & Token in order to call the corresponding endpoints. Please follow the [section](/api/metadata#obtaining-a-service-account--token) below prior to calling the endpoints
15+
Our Metadata service is managed through [Sequence Builder Console](HTTPS://SEQUENCE.BUILD) and requires a Service Account & Token in order to call the corresponding endpoints. Please follow the [section](/api-references/metadata#obtaining-a-service-account--token) below prior to calling the endpoints
1616
</Note>
1717

1818
## Obtaining a Service Account & Token
@@ -28,7 +28,7 @@ Keep in mind, in contrast to our Public API Access key - this Secret API Token s
2828
## Creating Collections, Tokens, and Managing Metadata
2929
The below steps walk through an end to end example utilizing our Metadata API in order to deploy an NFT collection, create tokens within that collection, and deploy asset metadata to such as an image to that token.
3030

31-
1. [Call `CreateCollection` endpoint](https://docs.sequence.xyz/api/metadata/endpoints) - ensure you pass in the Secret Service Token created in the prior section.
31+
1. [Call `CreateCollection` endpoint](https://docs.sequence.xyz/api-references/metadata/endpoints) - ensure you pass in the Secret Service Token created in the prior section.
3232

3333
2. `CreateToken` - use returned collectionId from previous request
3434

development.mdx

-107
This file was deleted.

docs.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -814,6 +814,10 @@
814814
}
815815
},
816816
"redirects": [
817+
{
818+
"source": "/404",
819+
"destination": "/404.html"
820+
},
817821
{
818822
"source": "/solutions/technical-references/chain-support/",
819823
"destination": "https://status.sequence.info"
@@ -894,5 +898,8 @@
894898
"source": "/api/:path*",
895899
"destination": "/api-references/:path*"
896900
}
897-
]
901+
],
902+
"not_found": {
903+
"page": "404.html"
904+
}
898905
}

essentials/images.mdx

-59
This file was deleted.

0 commit comments

Comments
 (0)