Skip to content

Commit 47b9472

Browse files
committed
Merge branch 'greg/tool-3503-universal-bridge-routes-page' of https://github.com/thirdweb-dev/js into greg/tool-3503-universal-bridge-routes-page
2 parents 22e8222 + eac713f commit 47b9472

File tree

91 files changed

+2172
-1224
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+2172
-1224
lines changed

.changeset/cuddly-plants-wait.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@thirdweb-dev/service-utils": patch
3+
---
4+
5+
chore: Allow passing teamId with dashboard auth

.changeset/shaggy-flowers-argue.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"thirdweb": patch
3+
---
4+
5+
Fiat onramp UI revamp in PayEmbed and support multi hop onramp flows

.changeset/twelve-walls-teach.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"thirdweb": patch
3+
---
4+
5+
Fix storage upload timeout

.github/contributing.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ To get started, read the [How this repo works](#how-this-repo-works) section bel
66

77
From there, you can take a look at our [Good First Issues](https://github.com/thirdweb-dev/js/labels/good%20first%20issue) board and find an issue that interests you!
88

9-
If you have any questions about the issue, feel free to ask on our [Discord server](https://discord.gg/thirdweb) in the `#contributors` channel; where you'll be able to get help from our team and other contributors.
10-
119
<br />
1210

1311
## How this repo works
@@ -85,7 +83,10 @@ If your test depends on a downstream network call, you must mock the call using
8583
import { setupServer } from "msw/node";
8684
import { downloadMock, uploadMock } from "../../../test/src/mocks/storage.js";
8785

88-
const server = setupServer(uploadMock("HASH"), downloadMock({ name: "Test NFT" }));
86+
const server = setupServer(
87+
uploadMock("HASH"),
88+
downloadMock({ name: "Test NFT" })
89+
);
8990

9091
beforeAll(() => server.listen());
9192
afterEach(() => server.resetHandlers());

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
<a href="https://github.com/thirdweb-dev/js/actions/workflows/CI.yml">
1212
<img alt="Build Status" src="https://github.com/thirdweb-dev/js/actions/workflows/CI.yml/badge.svg"/>
1313
</a>
14-
<a href="https://discord.gg/thirdweb">
15-
<img alt="Join our Discord!" src="https://img.shields.io/discord/834227967404146718.svg?color=7289da&label=discord&logo=discord&style=flat"/>
16-
</a>
1714
</p>
1815

1916
<p align="center"><strong>All-in-one web3 SDK for Browser, Node and Mobile apps</strong></p>

apps/dashboard/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272
"next-plausible": "^3.12.4",
7373
"next-themes": "^0.4.4",
7474
"nextjs-toploader": "^1.6.12",
75+
"nuqs": "^2.4.0",
7576
"p-limit": "^6.2.0",
7677
"papaparse": "^5.5.2",
7778
"pluralize": "^8.0.0",

apps/dashboard/src/@/actions/proxies.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -71,15 +71,6 @@ async function proxy<T extends object>(
7171
};
7272
}
7373

74-
export async function analyticsServerProxy<T extends object = object>(
75-
params: ProxyActionParams,
76-
) {
77-
return proxy<T>(
78-
process.env.ANALYTICS_SERVICE_URL || "https://analytics.thirdweb.com",
79-
params,
80-
);
81-
}
82-
8374
export async function apiServerProxy<T extends object = object>(
8475
params: ProxyActionParams,
8576
) {

0 commit comments

Comments
 (0)