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

Support for CKB v0.111.0 (CKB 2023) #525

Closed
5 tasks done
homura opened this issue Jun 13, 2023 · 5 comments · Fixed by #527
Closed
5 tasks done

Support for CKB v0.111.0 (CKB 2023) #525

homura opened this issue Jun 13, 2023 · 5 comments · Fixed by #527

Comments

@homura
Copy link
Collaborator

homura commented Jun 13, 2023

Intro

@ckb-lumos/lumos is working on with CKB2023 integration, for more details, please check #527.

If you're trying to work with CKB2023, you can simplify installing lumos by

npm install @ckb-lumos/lumos@ckb2023

or replace it in your package.json

{
  "dependencies": {
    "@ckb-lumos/lumos": "ckb2023"
  }
}

Changes

- `get_transaction(tx_hash, verbosity)`
+ `get_transaction(tx_hash, verbosity, only_committed)`

Reference

@homura
Copy link
Collaborator Author

homura commented Jun 16, 2023

Considering that there are users who install and use Lumos via npm install @ckb-lumos/lumos@next, if you want to experience the Ckb2023 features with Lumos before [email protected] is deployed to the testnet, we suggest the following way to do so

  1. Import lumos as a git submodule
git submodule add --branch ckb2023 https://github.com/ckb-js/lumos.git
  1. Append lumos to package.json as a workspace
{
  "workspaces": [
    "./lumos",
    "./lumos/packages/*"
  ]
}
  1. Build lumos
cd lumos
# pnpm is required
pnpm install
pnpm run build

@homura homura changed the title Support for CKB v0.111.0 Support for CKB v0.111.0 (CKB 2023) Jun 16, 2023
@homura homura mentioned this issue Jun 25, 2023
2 tasks
@homura
Copy link
Collaborator Author

homura commented Jul 5, 2023

The hardfork_features changes has been reverted, and released in ckb 0.111.0-rc5

@homura
Copy link
Collaborator Author

homura commented Jul 6, 2023

nervosnetwork/ckb-light-client#149

the CI seems broken by the light client because of the unsupported chain spec

@homura
Copy link
Collaborator Author

homura commented Sep 14, 2023

The CKB 0.111.0 has been released
https://github.com/nervosnetwork/ckb/releases/tag/v0.111.0

@homura
Copy link
Collaborator Author

homura commented Nov 22, 2023

We can find the integration of lumos@ckb2023 in this repo, special thanks to @gpBlockchain

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant