Skip to content

Commit

Permalink
feat: base mainnet support (#296)
Browse files Browse the repository at this point in the history
* feat: base mainnet support

* fix: revert commented out kv env vars

* bump cli after sdk publish

---------

Co-authored-by: Joe Wagner <njwjs722@gmail.com>
  • Loading branch information
dtbuchholz and joewagner authored Jul 10, 2024
1 parent 685c686 commit b69ff7e
Show file tree
Hide file tree
Showing 9 changed files with 55 additions and 53 deletions.
60 changes: 30 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tableland/studio-api",
"version": "0.0.2",
"version": "0.0.3",
"description": "",
"repository": "https://github.com/tablelandnetwork/studio/api",
"publishConfig": {
Expand All @@ -21,11 +21,11 @@
"author": "",
"license": "MIT AND Apache-2.0",
"dependencies": {
"@tableland/sdk": "^7.1.0",
"@tableland/studio-chains": "^0.1.0",
"@tableland/sdk": "^7.2.0",
"@tableland/studio-chains": "^0.2.0",
"@tableland/studio-mail": "^0.0.1",
"@tableland/studio-store": "^0.0.2",
"@tableland/studio-validators": "^0.0.2",
"@tableland/studio-store": "^0.0.3",
"@tableland/studio-validators": "^0.0.3",
"@trpc/server": "^11.0.0-next-beta.318",
"iron-session": "^8.0.1",
"siwe": "^2.3.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/chains/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tableland/studio-chains",
"version": "0.1.0",
"version": "0.2.0",
"description": "Supported chain definitions for Tableland Studio",
"repository": "https://github.com/tablelandnetwork/studio/chains",
"publishConfig": {
Expand Down
2 changes: 2 additions & 0 deletions packages/chains/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
arbitrum,
arbitrumSepolia,
arbitrumNova,
base,
baseSepolia,
filecoin,
filecoinCalibration,
Expand Down Expand Up @@ -58,6 +59,7 @@ function supportedChains(isLocalDev = false) {
{ ...arbitrum, testnet: false },
{ ...arbitrumSepolia, testnet: true },
{ ...arbitrumNova, testnet: false },
{ ...base, testnet: false },
{ ...baseSepolia, testnet: true },
{ ...filecoin, testnet: false },
{ ...filecoinCalibration, testnet: true },
Expand Down
8 changes: 4 additions & 4 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tableland/studio-cli",
"version": "0.2.2",
"version": "0.3.0",
"description": "Tableland command line tools",
"repository": "https://github.com/tablelandnetwork/studio/cli",
"publishConfig": {
Expand Down Expand Up @@ -44,10 +44,10 @@
},
"license": "MIT AND Apache-2.0",
"dependencies": {
"@tableland/sdk": "^7.1.0",
"@tableland/sdk": "^7.2.0",
"@tableland/sqlparser": "^1.3.0",
"@tableland/studio-client": "0.0.2",
"@tableland/studio-validators": "^0.0.2",
"@tableland/studio-client": "0.0.3",
"@tableland/studio-validators": "^0.0.3",
"chalk": "^5.3.0",
"cli-select-2": "^2.0.0",
"cosmiconfig": "^8.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tableland/studio-client",
"version": "0.0.2",
"version": "0.0.3",
"description": "A tRPC client for Studio",
"repository": "https://github.com/tablelandnetwork/studio/client",
"publishConfig": {
Expand Down Expand Up @@ -37,7 +37,7 @@
},
"homepage": "https://github.com/tablelandnetwork/studio#readme",
"dependencies": {
"@tableland/studio-api": "^0.0.2",
"@tableland/studio-api": "^0.0.3",
"@trpc/client": "^11.0.0-next-beta.318",
"superjson": "^2.2.1"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/store/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tableland/studio-store",
"version": "0.0.2",
"version": "0.0.3",
"description": "",
"repository": "https://github.com/tablelandnetwork/studio/store",
"publishConfig": {
Expand All @@ -21,7 +21,7 @@
"author": "",
"license": "MIT AND Apache-2.0",
"dependencies": {
"@tableland/sdk": "^7.1.0",
"@tableland/sdk": "^7.2.0",
"drizzle-orm": "^0.29.3",
"iron-session": "^8.0.1"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/validators/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tableland/studio-validators",
"version": "0.0.2",
"version": "0.0.3",
"description": "Shared Zod schemas for Studio packages",
"repository": "https://github.com/tablelandnetwork/studio/validators",
"publishConfig": {
Expand Down Expand Up @@ -38,8 +38,8 @@
},
"homepage": "https://github.com/tablelandnetwork/studio#readme",
"dependencies": {
"@tableland/sdk": "^7.1.0",
"@tableland/studio-store": "^0.0.2",
"@tableland/sdk": "^7.2.0",
"@tableland/studio-store": "^0.0.3",
"zod": "^3.23.4"
}
}
12 changes: 6 additions & 6 deletions packages/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@tableland/nonce": "^1.0.1",
"@tableland/sdk": "^7.1.0",
"@tableland/studio-api": "^0.0.2",
"@tableland/studio-chains": "^0.1.0",
"@tableland/studio-client": "^0.0.2",
"@tableland/studio-store": "^0.0.2",
"@tableland/studio-validators": "^0.0.2",
"@tableland/sdk": "^7.2.0",
"@tableland/studio-api": "^0.0.3",
"@tableland/studio-chains": "^0.2.0",
"@tableland/studio-client": "^0.0.3",
"@tableland/studio-store": "^0.0.3",
"@tableland/studio-validators": "^0.0.3",
"@tanstack/react-query": "^5.28.0",
"@tanstack/react-table": "^8.10.1",
"@trpc/client": "^11.0.0-next-beta.318",
Expand Down

1 comment on commit b69ff7e

@vercel
Copy link

@vercel vercel bot commented on b69ff7e Jul 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.