capsule
capsule copied to clipboard
Capsule is an out-of-box development framework for creating smart contract on Nervos' CKB.
``` $ cargo install cross --git https://github.com/cross-rs/cross ``` Cross is updating frequently. Can we fix it to a stable version or commit?
Hi all, When I compile the ckb-contracts of force-bridge-eth using ` capsule build --release`, it returns some error message like: `unexpected parts after split whitespaces: 0` ``` capsule check ------------------------------...
https://github.com/nervosnetwork/capsule/wiki/Installing-Capsule#build-and-install-capsule Update the install command to use the develop branch. `cargo install ckb-capsule --git https://github.com/nervosnetwork/capsule.git --branch develop` --- Adding some of the common errors with installing via Cargo would be...
env: Capsule 0.10.1 25fd7d4 ``` cargo install cross --git https://github.com/cross-rs/cross cargo install ckb-capsule --git https://github.com/quake/capsule.git --branch quake/ckb-0.111 ``` contranct :https://github.com/gpBlockchain/ckb-test-contracts/blob/main/rust/acceptance-contracts/contracts/spawn_demo/src/spawn_out_of_memory.rs#L45 test_code: https://github.com/gpBlockchain/ckb-test-contracts/blob/main/rust/acceptance-contracts/tests/src/test_contract_type.rs#L119-L122 step: ``` capsule test test_contract_type::test_spawn_out_of_memory running 1 test...
Add an option to use cargo instead of cross? This would require natively installed riscv64-unknown-elf-gcc instead of cross and docker. This can be an option in the config file and...
Chain simulator - [ ] Provide a function to set up a devnet chain, including built-in contracts and the genesis block. - [ ] Provide a high-level interface of the...
`ckb-capsule` leverage `ckb-cli` and `docker` to manage pks and build environment, but sometimes those tools block users' experience. In #77 , the new version of ckb-cli brokes the capsule's feature....
## Background There are some difference between running on the `ckb-chain` and running on the capsule test, so hopefully it will have some hints when it runs on the capsule...
[Executing these tests](https://github.com/phroi/capsule-tests) shows that `Capsule 0.9.0` with `rustc 1.63.0` suffer from: * `VM Internal Error: MemOutOfBound` when executing any non trivial script. * `Transaction timeout` when executing `always` success...
**Describe the bug** There is no way to specify the test that should be run using `capsule test`. This would be helpful to filter the tests that are executed. This...