2.1.0
What's Changed
Repository change
branch v2
is now default branch, and all developer should use
github.com/nervosnetwork/ckb-sdk-go/v2
instead of github.com/nervosnetwork/ckb-sdk-go
.
A quick migration command is:
find . -type f -name '*.go' \
-exec \
sed -i -e 's,github.com/nervosnetwork/ckb-sdk-go,github.com/nervosnetwork/ckb-sdk-go/v2,g' {} \;
Fix and features
- feat: refactor
SystemScriptCell
by @fjchen7 in #156 - feat: refactor utility function and reorganize package by @fjchen7 in #158
- fix: support indexer RPC in ckb node by @fjchen7 in #163
- feat: support mercury RPC
get_balance
extra by @fjchen7 in #167 - feat: support light client RPC by @fjchen7 in #169
- feat: support omnilock by @fjchen7 in #170
- chore: add case for getting rejected tx by @fjchen7 in #176
- Add RPC method
EstimateCycles
by @fjchen7 in #174 - feat: Support using OffChain Cell to build tx by @code-monad in #177
- chore: updates doc/examples about CKB-Indexer RPC by @code-monad in #179
- feat: support RPC:
get_fee_rate_statics
by @code-monad in #180 - feat: upgrade
get_transaction
to be compatible with ckb 0.106 by @code-monad in #181 - V2 prepared by @code-monad in #183
New Contributors
- @code-monad made their first contribution in #177
Full Changelog: v2.0.2...v2.0.3