fishTsai20

Results 11 issues of fishTsai20

(venv) MacBook-Pro:atomicals-electrumx isachoi$ CFLAGS='-stdlib=libc++ -std=c++11' pip3 install plyvel --no-cache-dir Collecting plyvel Downloading plyvel-1.5.1.tar.gz (200 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 200.1/200.1 kB 377.2 kB/s eta 0:00:00 Preparing metadata (setup.py) ... done Installing collected packages:...

leveldbutil --version Usage: leveldbutil command... dump files... -- dump contents of specified files

leveldbutil --version -rpath=/opt/homebrew/Cellar/leveldb\@1.22/1.22/lib/ dyld[20240]: Library not loaded: @rpath/libleveldb.1.dylib Referenced from: /opt/homebrew/Cellar/[email protected]/1.22/bin/leveldbutil Reason: no LC_RPATH's found Abort trap: 6

--- name: Feature request about: Support Curve new protocol title: "#feature; curve; handle TricryptoPoolDeployed event" labels: enhancement assignees: ishraq8 --- **What do you think is missing?** The Curve configuration was...

get message tag by c++ like below: https://github.com/dungeon-master-666/ton/blob/200508cf8fca3ce5aa8d566105e32aea38601e93/crypto/tl/tlblib.hpp#L723 ``` auto message_cs = vm::load_cell_slice(trans.r1.in_msg->prefetch_ref()); block::gen::t_CommonMsgInfo.get_tag(message_cs) int get_tag(const vm::CellSlice& cs) const override { return cs.bselect(2, 13); } ``` How to get tag...

method 1: Below is how ton-index(https://github.com/toncenter/ton-index-worker) get msg-hash ``` trans.r1 struct: struct Record { typedef Transaction_aux type_class; Ref in_msg; // in_msg : Maybe ^(Message Any) Ref out_msgs; // out_msgs :...

src_tx_hash:'8do0P2NEK7qtycZHniERQWGQ9Wy7BJQKtarpMkOa/gw=' hash:'5cOyEmX7zMOffQ41NkjeEuAfVaAFbGis8wIExCxlOVI=' src:'EQCN8t4vcAdfIinTuARZ49Ue3Wbx4XPUUET2KgVu579AhnYv' dest:'EQDkLxDcJbXAlP3pzhrK6BRVLgYB538FENOIUQSBTWR6GypP' the way we parse message.hash as below ``` message tlb.Message msgCell, err := tlb.ToCell(message) msg.Hash = msgCell.Hash() hash = base64.StdEncoding.EncodeToString(msg.Hash) ``` https://tonscan.org/tx/f1da343f63442bbaadc9c6479e2111416190f56cbb04940ab5aae932439afe0c But tonscan's message hash...

var ab tlb.AccountBlock if err = tlb.LoadFromCell(&ab, slc); err != nil { return fmt.Errorf("faled to parse account block: %w", err) } addr := address.NewAddress(0, byte(0), ab.Addr) log.Info("account block's ", zap.Any("address",...

src_tx_hash:'8do0P2NEK7qtycZHniERQWGQ9Wy7BJQKtarpMkOa/gw=' hash:'5cOyEmX7zMOffQ41NkjeEuAfVaAFbGis8wIExCxlOVI=' src:'EQCN8t4vcAdfIinTuARZ49Ue3Wbx4XPUUET2KgVu579AhnYv' dest:'EQDkLxDcJbXAlP3pzhrK6BRVLgYB538FENOIUQSBTWR6GypP' the way we parse message.hash as below ``` message tlb.Message msgCell, err := tlb.ToCell(message.Msg) msg.Hash = msgCell.Hash() hash = base64.StdEncoding.EncodeToString(msg.Hash) ``` https://tonscan.org/tx/f1da343f63442bbaadc9c6479e2111416190f56cbb04940ab5aae932439afe0c But tonscan's message hash...

Using liteserver.getBlock to get Block data, the I load Cell from BlockExtra, after some steps I get transactions. But the transactions count is not right. Such as seqNo: 39789259 in...