Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pacific-1 chain config import as default and clean up helper functions #64

Merged
merged 15 commits into from
Aug 12, 2023
Merged
  •  
  •  
  •  
11 changes: 11 additions & 0 deletions .changeset/clean-plums-march.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
'@sei-js/proto': major
'@sei-js/react': major
'@sei-js/core': major
---

- Excludes unnecessary modules in proto codegen
- Remove TM35 client (no longer used)
- Clean up helper functions in favor of using Sei wallet interfaces
- Update react hooks
- Adds mobile wallet support through UI components and inside wallet interfaces
19 changes: 19 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 0.0.0-internal-20230811175927
codebycarson marked this conversation as resolved.
Show resolved Hide resolved

### Major Changes

- Pacific-1 release with mobile support and optimized proto bundle size

### Minor Changes

- 7229f87: - Excludes unnecessary modules in proto codegen
- Remove TM35 client (no longer used)
- Clean up helper functions in favor of using Sei wallet interfaces
- Update react hooks

### Patch Changes

- Updated dependencies
- Updated dependencies [7229f87]
- @sei-js/[email protected]

## 1.5.0

### Minor Changes
Expand Down
97 changes: 49 additions & 48 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,50 +1,51 @@
{
"name": "@sei-js/core",
"version": "1.5.0",
"description": "TypeScript library for front end integrations with Sei",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "yarn build:types && yarn build:js && yarn build:prettier",
"build:types": "tsc --project tsconfig.declarations.json",
"build:js": "babel src --out-dir dist --extensions '.js,.jsx,.ts,.tsx' --source-maps --copy-files",
"build:prettier": "prettier --write dist"
},
"homepage": "https://github.com/sei-protocol/sei-js#readme",
"keywords": [
"sei",
"javascript",
"typescript",
"cosmos"
],
"repository": "[email protected]:sei-protocol/sei-js.git",
"license": "MIT",
"private": false,
"dependencies": {
"@cosmjs/amino": "0.29.5",
"@cosmjs/cosmwasm-stargate": "0.29.5",
"@cosmjs/crypto": "0.29.5",
"@cosmjs/encoding": "0.29.5",
"@cosmjs/json-rpc": "0.29.5",
"@cosmjs/math": "0.29.5",
"@cosmjs/proto-signing": "0.29.5",
"@cosmjs/stargate": "0.29.5",
"@cosmjs/tendermint-rpc": "0.29.5",
"@cosmjs/utils": "0.29.5",
"@ethersproject/keccak256": "^5.7.0",
"@keplr-wallet/types": "^0.11.41",
"@sei-js/proto": "1.3.0",
"crypto-js": "^4.1.1",
"readonly-date": "^1.0.0",
"sha.js": "^2.4.11",
"xstream": "^11.14.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5"
}
"name": "@sei-js/core",
"version": "0.0.0-internal-20230811175927",
"description": "TypeScript library for front end integrations with Sei",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "yarn build:types && yarn build:js && yarn build:prettier",
"build:types": "tsc --project tsconfig.declarations.json",
"build:js": "babel src --out-dir dist --extensions '.js,.jsx,.ts,.tsx' --source-maps --copy-files",
"build:prettier": "prettier --write dist",
"test": "jest"
},
"homepage": "https://github.com/sei-protocol/sei-js#readme",
"keywords": [
"sei",
"javascript",
"typescript",
"cosmos"
],
"repository": "[email protected]:sei-protocol/sei-js.git",
"license": "MIT",
"private": false,
"dependencies": {
"@cosmjs/amino": "0.29.5",
"@cosmjs/cosmwasm-stargate": "0.29.5",
"@cosmjs/crypto": "0.29.5",
"@cosmjs/encoding": "0.29.5",
"@cosmjs/json-rpc": "0.29.5",
"@cosmjs/math": "0.29.5",
"@cosmjs/proto-signing": "0.29.5",
"@cosmjs/stargate": "0.29.5",
"@cosmjs/tendermint-rpc": "0.29.5",
"@cosmjs/utils": "0.29.5",
"@ethersproject/keccak256": "^5.7.0",
"@keplr-wallet/types": "^0.11.41",
"@sei-js/proto": "0.0.0-internal-20230811175927",
"crypto-js": "^4.1.1",
"readonly-date": "^1.0.0",
"sha.js": "^2.4.11",
"xstream": "^11.14.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5"
}
}
25 changes: 0 additions & 25 deletions packages/core/src/lib/client/common.ts

This file was deleted.

12 changes: 0 additions & 12 deletions packages/core/src/lib/client/events.ts

This file was deleted.

5 changes: 0 additions & 5 deletions packages/core/src/lib/client/index.ts

This file was deleted.

88 changes: 0 additions & 88 deletions packages/core/src/lib/client/seiCosmWasmClient.ts

This file was deleted.

97 changes: 0 additions & 97 deletions packages/core/src/lib/client/seiSigningCosmWasmClient.ts

This file was deleted.

Loading