Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed Feb 7, 2025
1 parent a410198 commit 03fabd7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,21 @@ You can use each submodule individually. Click the module below to get more deta
* ✅ Lite-client wrapper
* ✅ Fift wrapper
* ✅ Func wrapper
* ✅ TVM emulator wrapper
* ✅ Tolk wrapper
* ✅ TVM and Tx emulator wrapper
* ✅ Transaction emulator wrapper
* ✅ TonConnect
* ✅ BoC disassembler
* ✅ Extra-currency support and examples
* ✅ Support num, cell and slice as arguments for runMethod
* ✅ Render List, Tuple, Slice, Cell and Number results from runMethod
* ✅ Generate or import private key, sign, encrypt and decrypt using Tonlib
* ✅ Encrypt/decrypt with mnemonic
* ✅ Send external message
* ✅ Get block transactions
* ✅ Deploy contracts and send external messages using Tonlib
* ✅ Wallets - Simple (V1), V2, V3, V4 (plugins), V5, Lockup, Highload/Highload-V3, DNS, Jetton, StableCoin, NFT,
Payment-channels, Multisig V1
* ✅ Wallets - Simple (V1), V2, V3, V4 (plugins), V5, Lockup, ~~Highload~~/Highload-V3, DNS, Jetton, StableCoin, NFT,
Payment-channels, ~~Multisig V1~~
* ✅ HashMap, HashMapE, PfxHashMap, PfxHashMapE, HashMapAug, HashMapAugE serialization / deserialization

## Star History
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public void testBulkTransferSimplified_1000()

// top up new wallet using test-faucet-wallet
BigInteger balance =
TestnetFaucet.topUpContract(tonlib, Address.of(nonBounceableAddress), Utils.toNano(12));
TestnetFaucet.topUpContract(tonlib, Address.of(nonBounceableAddress), Utils.toNano(2));
Utils.sleep(30, "topping up...");
log.info("new wallet {} balance: {}", contract.getName(), Utils.formatNanoValue(balance));

Expand Down Expand Up @@ -619,7 +619,7 @@ List<Destination> createDummyDestinations(int count) {
Destination.builder()
.bounce(false)
.address(dstDummyAddress)
.amount(Utils.toNano(0.01))
.amount(Utils.toNano(0.001))
// .comment("comment-" + i)
.build());
}
Expand Down

0 comments on commit 03fabd7

Please sign in to comment.