-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #630 from alleslabs/release/v1.3.0
Cut release v1.3.0
- Loading branch information
Showing
643 changed files
with
31,678 additions
and
13,189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* eslint-disable @typescript-eslint/no-explicit-any */ | ||
export {}; | ||
|
||
declare global { | ||
interface Array<T> { | ||
findLastIndex( | ||
predicate: (value: T, index: number, obj: T[]) => unknown, | ||
thisArg?: any | ||
): number; | ||
findLast( | ||
predicate: (value: T, index: number, obj: T[]) => unknown, | ||
thisArg?: any | ||
): T | undefined; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
version: "3.6" | ||
services: | ||
postgres: | ||
image: postgres:15 | ||
restart: always | ||
volumes: | ||
- db_data:/var/lib/postgresql/data | ||
environment: | ||
POSTGRES_PASSWORD: postgrespassword | ||
graphql-engine: | ||
image: hasura/graphql-engine:v2.33.0 | ||
ports: | ||
- "8080:8080" | ||
restart: always | ||
environment: | ||
## postgres database to store Hasura metadata | ||
HASURA_GRAPHQL_METADATA_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/postgres | ||
## this env var can be used to add the above postgres database to Hasura as a data source. this can be removed/updated based on your needs | ||
PG_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/postgres | ||
## enable the console served by server | ||
HASURA_GRAPHQL_ENABLE_CONSOLE: "true" # set to "false" to disable console | ||
## enable debugging mode. It is recommended to disable this in production | ||
HASURA_GRAPHQL_DEV_MODE: "true" | ||
HASURA_GRAPHQL_ENABLED_LOG_TYPES: startup, http-log, webhook-log, websocket-log, query-log | ||
## uncomment next line to run console offline (i.e load console assets from server instead of CDN) | ||
# HASURA_GRAPHQL_CONSOLE_ASSETS_DIR: /srv/console-assets | ||
## uncomment next line to set an admin secret | ||
# HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey | ||
HASURA_GRAPHQL_METADATA_DEFAULTS: '{"backend_configs":{"dataconnector":{"athena":{"uri":"http://data-connector-agent:8081/api/v1/athena"},"mariadb":{"uri":"http://data-connector-agent:8081/api/v1/mariadb"},"mysql8":{"uri":"http://data-connector-agent:8081/api/v1/mysql"},"oracle":{"uri":"http://data-connector-agent:8081/api/v1/oracle"},"snowflake":{"uri":"http://data-connector-agent:8081/api/v1/snowflake"}}}}' | ||
depends_on: | ||
data-connector-agent: | ||
condition: service_healthy | ||
data-connector-agent: | ||
image: hasura/graphql-data-connector:v2.33.0 | ||
restart: always | ||
ports: | ||
- 8081:8081 | ||
environment: | ||
QUARKUS_LOG_LEVEL: ERROR # FATAL, ERROR, WARN, INFO, DEBUG, TRACE | ||
## https://quarkus.io/guides/opentelemetry#configuration-reference | ||
QUARKUS_OPENTELEMETRY_ENABLED: "false" | ||
## QUARKUS_OPENTELEMETRY_TRACER_EXPORTER_OTLP_ENDPOINT: http://jaeger:4317 | ||
healthcheck: | ||
test: ["CMD", "curl", "-f", "http://localhost:8081/api/v1/athena/health"] | ||
interval: 5s | ||
timeout: 10s | ||
retries: 5 | ||
start_period: 5s | ||
volumes: | ||
db_data: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "celatone", | ||
"version": "1.2.0", | ||
"version": "1.3.0", | ||
"author": "Alles Labs", | ||
"scripts": { | ||
"dev": "next dev", | ||
|
@@ -18,29 +18,38 @@ | |
"push-release": "git push --follow-tags origin main", | ||
"prepare": "husky install" | ||
}, | ||
"resolutions": { | ||
"@interchain-ui/react": "1.11.4", | ||
"chakra-react-select": "^4.7.0" | ||
}, | ||
"dependencies": { | ||
"@amplitude/analytics-browser": "^1.8.0", | ||
"@amplitude/marketing-analytics-browser": "^1.0.7", | ||
"@chain-registry/types": "^0.13.1", | ||
"@amplitude/analytics-browser": "^2.3.3", | ||
"@amplitude/analytics-types": "^2.3.0", | ||
"@amplitude/plugin-user-agent-enrichment-browser": "^1.0.0", | ||
"@chain-registry/types": "0.17.0", | ||
"@chakra-ui/anatomy": "^2.1.0", | ||
"@chakra-ui/card": "^2.1.1", | ||
"@chakra-ui/icons": "^2.0.11", | ||
"@chakra-ui/react": "2.3.6", | ||
"@chakra-ui/styled-system": "^2.3.5", | ||
"@cosmjs/cosmwasm-stargate": "^0.31.1", | ||
"@cosmjs/crypto": "^0.31.1", | ||
"@cosmjs/encoding": "^0.31.1", | ||
"@cosmjs/proto-signing": "^0.31.1", | ||
"@cosmjs/stargate": "^0.31.1", | ||
"@cosmos-kit/compass": "2.3.0", | ||
"@cosmos-kit/core": "2.5.0", | ||
"@cosmos-kit/keplr": "2.3.0", | ||
"@cosmos-kit/react": "2.6.0", | ||
"@cosmos-kit/station": "2.3.0", | ||
"@cosmjs/cosmwasm-stargate": "0.31.3", | ||
"@cosmjs/crypto": "0.31.3", | ||
"@cosmjs/encoding": "0.31.3", | ||
"@cosmjs/proto-signing": "0.31.3", | ||
"@cosmjs/stargate": "0.31.3", | ||
"@cosmos-kit/compass": "2.4.5", | ||
"@cosmos-kit/core": "2.7.4", | ||
"@cosmos-kit/keplr": "2.4.6", | ||
"@cosmos-kit/react": "2.9.5", | ||
"@cosmos-kit/station": "2.4.4", | ||
"@emotion/react": "^11", | ||
"@emotion/styled": "^11", | ||
"@graphql-codegen/cli": "^2.13.12", | ||
"@graphql-codegen/client-preset": "^1.1.4", | ||
"@initia/initia.js": "0.1.12", | ||
"@initia/initia.proto": "0.1.12", | ||
"@interchain-ui/react": "1.11.4", | ||
"@monaco-editor/react": "^4.6.0", | ||
"@rjsf/chakra-ui": "v5.0.0-beta.10", | ||
"@rjsf/core": "v5.0.0-beta.10", | ||
"@rjsf/utils": "v5.0.0-beta.10", | ||
|
@@ -55,10 +64,11 @@ | |
"axios": "^1.1.3", | ||
"big.js": "^6.2.1", | ||
"camelcase": "^7.0.0", | ||
"chain-registry": "^1.19.0", | ||
"chain-registry": "1.20.0", | ||
"chakra-react-select": "^4.7.0", | ||
"cosmjs-types": "^0.7.2", | ||
"dayjs": "^1.11.6", | ||
"file-saver": "^2.0.5", | ||
"framer-motion": "^7.6.12", | ||
"graphql": "^16.6.0", | ||
"graphql-request": "^5.0.0", | ||
|
@@ -71,6 +81,7 @@ | |
"mobx": "^6.6.2", | ||
"mobx-persist-store": "^1.1.2", | ||
"mobx-react-lite": "^3.4.0", | ||
"monaco-editor": "^0.44.0", | ||
"next": "^13.0.0", | ||
"next-seo": "^5.8.0", | ||
"node-gzip": "^1.1.2", | ||
|
@@ -89,8 +100,9 @@ | |
"uuid": "^9.0.0" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/config-conventional": "^17.1.0", | ||
"@commitlint/cz-commitlint": "^17.1.2", | ||
"@commitlint/config-conventional": "^18.1.0", | ||
"@commitlint/cz-commitlint": "^18.2.0", | ||
"@types/file-saver": "^2.0.5", | ||
"@types/jest": "^29.4.0", | ||
"@types/node-gzip": "^1.1.0", | ||
"@types/react": "^18.0.21", | ||
|
@@ -99,18 +111,18 @@ | |
"commitizen": "^4.2.5", | ||
"commitlint": "^17.1.2", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.25.0", | ||
"eslint-config-next": "^13.0.0", | ||
"eslint-config-sznm": "^1.0.0", | ||
"eslint": "^8.52.0", | ||
"eslint-config-next": "^14.0.0", | ||
"eslint-config-sznm": "^2.0.2", | ||
"husky": "^8.0.1", | ||
"jest": "^29.5.0", | ||
"lint-staged": "^13.0.3", | ||
"mockdate": "^3.0.5", | ||
"next-sitemap": "^3.1.25", | ||
"prettier": "^2.7.1", | ||
"prettier": "^3.0.3", | ||
"standard-version": "^9.5.0", | ||
"ts-jest": "^29.0.5", | ||
"typescript": "^4.9.5" | ||
"typescript": "^5.1.6" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/* TODO: add another font face later */ | ||
@font-face { | ||
font-family: "Pilat Wide"; | ||
src: url("./PilatWide-Bold.woff"); | ||
src: url("./PilatWide-Bold.woff2"); | ||
font-weight: 600; | ||
font-style: normal; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
import { wallets as keplrWallets } from "@cosmos-kit/keplr"; | ||
|
||
import type { ChainConfigs } from "./types"; | ||
|
||
export const INITIA_CHAIN_CONFIGS: ChainConfigs = { | ||
"stone-11": { | ||
chain: "initia", | ||
registryChainName: "initiatestnet11", | ||
prettyName: "Initia Testnet 11", | ||
lcd: "https://stone-rest.initia.tech", | ||
rpc: "https://stone-rpc.initia.tech:443", | ||
indexer: "https://stone-11-graphql.alleslabs.dev/v1/graphql", | ||
api: "https://celatone-api.alleslabs.dev", | ||
wallets: [...keplrWallets], | ||
features: { | ||
faucet: { | ||
enabled: true, | ||
url: process.env.NEXT_PUBLIC_INITIA_TESTNET_FAUCET_URL ?? "", | ||
}, | ||
wasm: { | ||
enabled: false, | ||
}, | ||
move: { | ||
enabled: true, | ||
moduleMaxFileSize: 1_048_576, | ||
decodeApi: "https://initia-api-jiod42ec2q-as.a.run.app/decode_module", | ||
}, | ||
pool: { | ||
enabled: false, | ||
}, | ||
publicProject: { | ||
enabled: true, | ||
}, | ||
gov: { | ||
enabled: true, | ||
}, | ||
nft: { | ||
enabled: true, | ||
}, | ||
}, | ||
gas: { | ||
gasPrice: { | ||
tokenPerGas: 0.151, | ||
denom: "uinit", | ||
}, | ||
gasAdjustment: 1.5, | ||
maxGasLimit: 25_000_000, | ||
}, | ||
explorerLink: { | ||
validator: "https://app.initia.tech/validator", | ||
proposal: "https://app.initia.tech/proposal", | ||
}, | ||
extra: {}, | ||
}, | ||
}; |
Oops, something went wrong.
4cf1fb7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
sei-celatone-frontend – ./
sei-celatone-frontend-alleslabs.vercel.app
seiscan.app
sei.celat.one
sei-celatone-frontend-git-main-alleslabs.vercel.app
www.seiscan.app
sei-celatone-frontend.vercel.app
4cf1fb7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
osmosis-celatone-frontend – ./
celatone-frontend.vercel.app
osmosis-celatone-frontend-alleslabs.vercel.app
osmosis-celatone-frontend-git-main-alleslabs.vercel.app
osmoscan.io
osmosis.celat.one
www.osmoscan.io
celatone.osmosis.zone
4cf1fb7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
neutron-celatone-frontend – ./
neutron.celat.one
neutron-celatone-frontend-alleslabs.vercel.app
neutron-celatone-frontend-staging.vercel.app
neutron-celatone-frontend-git-main-alleslabs.vercel.app
neutron-staging.celat.one
4cf1fb7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
terra-celatone-frontend – ./
terra-celatone-frontend-alleslabs.vercel.app
terra-celatone-frontend-git-main-alleslabs.vercel.app
terra-celatone-frontend.vercel.app
terra.celat.one
4cf1fb7
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
initia-celatone-frontend – ./
initia-celatone-frontend.vercel.app
initia-celatone-frontend-git-main-alleslabs.vercel.app
initia-celatone-frontend-alleslabs.vercel.app
celatone.initia.tech
scan.initia.tech
initia.celat.one