Skip to content

Commit

Permalink
✨ Verify deposit from and claim to
Browse files Browse the repository at this point in the history
  • Loading branch information
doitian committed Feb 9, 2024
1 parent d739d52 commit 7695ee9
Show file tree
Hide file tree
Showing 9 changed files with 591 additions and 99 deletions.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ contract: schemas
make -f contracts.mk build
make CARGO_ARGS="${CARGO_TEST_ARGS}" -f contracts.mk test

contract-linters:
make -f contracts.mk fmt
make -f contracts.mk check
make -f contracts.mk clippy

SCHEMA_MOL_FILES := $(wildcard schemas/*.mol)
SCHEMA_RUST_FILES := $(patsubst %.mol,crates/ckb-dao-cobuild-schemas/src/%.rs,$(SCHEMA_MOL_FILES))
crates/ckb-dao-cobuild-schemas/src/%.rs: %.mol
Expand All @@ -20,4 +25,4 @@ schemas: $(SCHEMA_RUST_FILES)
clean-schemas:
rm -f $(SCHEMA_RUST_FILES)

.PHONY: all web contract schemas clean-schemas
.PHONY: all web contract contract-linters schemas clean-schemas
30 changes: 26 additions & 4 deletions contracts/__tests__/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ pub struct DefaultTxSpec {

alice_lock_script: packed::Script,

verifier_lock_script: packed::Script,
verifier_type_script: packed::Script,
dao_type_script: packed::Script,
}
Expand Down Expand Up @@ -233,6 +234,9 @@ impl DefaultTxSpec {

// verifier cell
let verifier_out_point = context.deploy_cell(loader.load_binary("dao-action-verifier"));
let verifier_lock_script = context
.build_script(&always_success_out_point, Default::default())
.expect("script");
let verifier_type_script = context
.build_script(&verifier_out_point, Default::default())
.expect("script");
Expand All @@ -241,6 +245,7 @@ impl DefaultTxSpec {
context,
dao_input_out_point,
alice_lock_script,
verifier_lock_script,
verifier_type_script,
dao_type_script,
}
Expand Down Expand Up @@ -321,6 +326,12 @@ pub fn pack_ar(ar: u64) -> packed::Byte32 {
packed::Byte32::new_unchecked(Bytes::from(dao_buf))
}

pub fn unpack_ar(dao: packed::Byte32) -> u64 {
let mut ar_buf = [0u8; 8];
ar_buf.copy_from_slice(&dao.as_slice()[8..16]);
u64::from_le_bytes(ar_buf)
}

impl TxSpec for DefaultTxSpec {
fn new_dao_input_spec(&mut self) -> CellSpec {
CellSpec {
Expand Down Expand Up @@ -362,7 +373,7 @@ impl TxSpec for DefaultTxSpec {
let verifier_cell = self.context.create_cell(
packed::CellOutput::new_builder()
.capacity(DEFAULT_CAPACITY.pack())
.lock(self.alice_lock_script.clone())
.lock(self.verifier_lock_script.clone())
.type_(Some(self.verifier_type_script.clone()).pack())
.build(),
Bytes::new(),
Expand All @@ -372,7 +383,7 @@ impl TxSpec for DefaultTxSpec {
.build();
let verifier_output = packed::CellOutput::new_builder()
.capacity(DEFAULT_CAPACITY.pack())
.lock(self.alice_lock_script.clone())
.lock(self.verifier_lock_script.clone())
.build();

TransactionBuilder::default()
Expand Down Expand Up @@ -528,6 +539,14 @@ where
let mut spec = CustomTxSpec::default();
let claim = claim_builder(&mut spec);

let deposit_ar = unpack_ar(deposit_header.dao());
let withdraw_ar = unpack_ar(withdraw_header.dao());
let componsation = if deposit_ar != 0 {
(DEFAULT_CAPACITY - DAO_INPUT_OCCUPIED_CAPACITY) * (withdraw_ar - deposit_ar) / deposit_ar
} else {
0
};

let deposit_header_hash = deposit_header.hash();
let deposit_block_number = pack_uint64(deposit_header.number());
let withdraw_header_hash = withdraw_header.hash();
Expand Down Expand Up @@ -556,8 +575,11 @@ where
data: deposit_block_number.as_bytes(),
..cell
});
spec.on_new_output_spec(|cell| CellSpec {
output: cell.output.type_(packed::ScriptOpt::default()),
spec.on_new_output_spec(move |cell| CellSpec {
output: cell
.output
.capacity((DEFAULT_CAPACITY + componsation).pack())
.type_(packed::ScriptOpt::default()),
data: Bytes::new(),
..cell
});
Expand Down
Loading

0 comments on commit 7695ee9

Please sign in to comment.