Skip to content

Commit d778bb8

Browse files
return address type for contractoptions
1 parent a0835f7 commit d778bb8

File tree

5,735 files changed

+1248852
-1248858
lines changed

Some content is hidden

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

5,735 files changed

+1248852
-1248858
lines changed

.changeset/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Changesets
2-
3-
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4-
with multi-package repos, or single-package repos to help you version and publish your code. You can
5-
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6-
7-
We have a quick list of common questions to get you started engaging with this project in
8-
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
{
2-
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3-
"changelog": [
4-
"@changesets/changelog-github",
5-
{
6-
"repo": "thirdweb-dev/js"
7-
}
8-
],
9-
"commit": false,
10-
"access": "public",
11-
"baseBranch": "main",
12-
"updateInternalDependencies": "patch",
13-
"ignore": ["playground-web", "thirdweb-dashboard", "wallet-ui", "portal"],
14-
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
15-
"updateInternalDependents": "always",
16-
"onlyUpdatePeerDependentsWhenOutOfRange": true
17-
},
18-
"snapshot": {
19-
"prereleaseTemplate": "{tag}-{commit}-{datetime}"
20-
}
21-
}
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": [
4+
"@changesets/changelog-github",
5+
{
6+
"repo": "thirdweb-dev/js"
7+
}
8+
],
9+
"commit": false,
10+
"access": "public",
11+
"baseBranch": "main",
12+
"updateInternalDependencies": "patch",
13+
"ignore": ["playground-web", "thirdweb-dashboard", "wallet-ui", "portal"],
14+
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
15+
"updateInternalDependents": "always",
16+
"onlyUpdatePeerDependentsWhenOutOfRange": true
17+
},
18+
"snapshot": {
19+
"prereleaseTemplate": "{tag}-{commit}-{datetime}"
20+
}
21+
}

.changeset/cyan-shrimps-battle.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
---
2-
"thirdweb": patch
3-
---
4-
5-
Update implementations
1+
---
2+
"thirdweb": patch
3+
---
4+
5+
Update implementations

.changeset/fair-planes-doubt.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
---
2-
"thirdweb": patch
3-
---
4-
5-
SDK: Fix chain switching in smart account transactions
1+
---
2+
"thirdweb": patch
3+
---
4+
5+
SDK: Fix chain switching in smart account transactions

.changeset/metal-mails-ring.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
---
2-
"thirdweb": patch
3-
---
4-
5-
- Add onClose callback to Connect Details modal
6-
7-
```tsx
8-
<ConnectButton
9-
detailsModal={{
10-
onClose: (screen: string) => {
11-
// The last screen name that was being shown when user closed the modal
12-
console.log({ screen });
13-
}
14-
}}
15-
/>
16-
```
17-
18-
- Small fix for ChainIcon: Always resolve IPFS URI
19-
1+
---
2+
"thirdweb": patch
3+
---
4+
5+
- Add onClose callback to Connect Details modal
6+
7+
```tsx
8+
<ConnectButton
9+
detailsModal={{
10+
onClose: (screen: string) => {
11+
// The last screen name that was being shown when user closed the modal
12+
console.log({ screen });
13+
}
14+
}}
15+
/>
16+
```
17+
18+
- Small fix for ChainIcon: Always resolve IPFS URI
19+
2020
- Improve test coverage

.env.example

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# rename this file to .env and fill in the values
2-
# this is not required to build the packages but will significantly increase test performance
3-
4-
# used for unit tests that hit real IPFS gateway
5-
# get a secret key from https://thirdweb.com/create-api-key
6-
# Learn more about API keys. https://portal.thirdweb.com/account/api-keys
7-
TW_SECRET_KEY=""
1+
# rename this file to .env and fill in the values
2+
# this is not required to build the packages but will significantly increase test performance
3+
4+
# used for unit tests that hit real IPFS gateway
5+
# get a secret key from https://thirdweb.com/create-api-key
6+
# Learn more about API keys. https://portal.thirdweb.com/account/api-keys
7+
TW_SECRET_KEY=""

.github/CODEOWNERS

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# Order is important; the last matching pattern takes the most precedence.
2-
3-
# default ownership group
4-
@thirdweb-dev/developer-tools
5-
6-
# packages
7-
packages/thirdweb/ @thirdweb-dev/core-platform @thirdweb-dev/developer-tools
8-
9-
## specific thirdweb pieces
10-
packages/service-utils/ @thirdweb-dev/core-platform
11-
packages/eslint-config-thirdweb/ @thirdweb-dev/core-platform @edwardysun
12-
packages/tw-tsconfig/ @thirdweb-dev/core-platform @edwardysun
13-
14-
# apps
15-
apps/ @thirdweb-dev/developer-tools @thirdweb-dev/core-platform @jakubkrehel
16-
17-
# .github folder + .changeset + turbo config is owned by jonas for now
18-
scripts/ @jnsdls @joaquim-verges
19-
.github/ @jnsdls @joaquim-verges
20-
.changeset/config.json @jnsdls @joaquim-verges
21-
turbo.json @jnsdls @joaquim-verges
22-
.vscode/ @jnsdls @joaquim-verges
23-
1+
# Order is important; the last matching pattern takes the most precedence.
2+
3+
# default ownership group
4+
@thirdweb-dev/developer-tools
5+
6+
# packages
7+
packages/thirdweb/ @thirdweb-dev/core-platform @thirdweb-dev/developer-tools
8+
9+
## specific thirdweb pieces
10+
packages/service-utils/ @thirdweb-dev/core-platform
11+
packages/eslint-config-thirdweb/ @thirdweb-dev/core-platform @edwardysun
12+
packages/tw-tsconfig/ @thirdweb-dev/core-platform @edwardysun
13+
14+
# apps
15+
apps/ @thirdweb-dev/developer-tools @thirdweb-dev/core-platform @jakubkrehel
16+
17+
# .github folder + .changeset + turbo config is owned by jonas for now
18+
scripts/ @jnsdls @joaquim-verges
19+
.github/ @jnsdls @joaquim-verges
20+
.changeset/config.json @jnsdls @joaquim-verges
21+
turbo.json @jnsdls @joaquim-verges
22+
.vscode/ @jnsdls @joaquim-verges
23+
Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
name: "Install"
2-
description: "Sets up Node.js and runs install"
3-
4-
runs:
5-
using: composite
6-
steps:
7-
# we use bun for some test suites
8-
- name: Setup bun
9-
uses: oven-sh/setup-bun@v1
10-
with:
11-
bun-version: 1.0.35
12-
# pnpm for our dependencies
13-
- uses: pnpm/action-setup@v3
14-
with:
15-
version: 9
16-
- name: Setup Node.js
17-
uses: actions/setup-node@v4
18-
with:
19-
node-version: 20
20-
check-latest: true
21-
registry-url: "https://registry.npmjs.org"
22-
cache: "pnpm"
23-
- name: Install node-gyp globally
24-
shell: bash
25-
run: pnpm install -g node-gyp node-gyp-build
26-
27-
- name: Install dependencies
28-
shell: bash
29-
run: pnpm install
30-
env:
31-
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: "1"
1+
name: "Install"
2+
description: "Sets up Node.js and runs install"
3+
4+
runs:
5+
using: composite
6+
steps:
7+
# we use bun for some test suites
8+
- name: Setup bun
9+
uses: oven-sh/setup-bun@v1
10+
with:
11+
bun-version: 1.0.35
12+
# pnpm for our dependencies
13+
- uses: pnpm/action-setup@v3
14+
with:
15+
version: 9
16+
- name: Setup Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: 20
20+
check-latest: true
21+
registry-url: "https://registry.npmjs.org"
22+
cache: "pnpm"
23+
- name: Install node-gyp globally
24+
shell: bash
25+
run: pnpm install -g node-gyp node-gyp-build
26+
27+
- name: Install dependencies
28+
shell: bash
29+
run: pnpm install
30+
env:
31+
PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD: "1"

0 commit comments

Comments
 (0)