Skip to content

Commit

Permalink
add highload wallet to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
neodix42 committed Nov 24, 2022
1 parent d2e6c34 commit 84ec9cf
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,12 @@ You can use each submodule individually. Click the module below to get more deta
* ✅ Get block transactions
* ✅ Get account transactions
* ✅ Deploy contracts and send external messages using Tonlib
* ✅ Wallet operations (Simple (V1), V2, V3, V4 (plugins), ~~Lockup~~, DNS, Jetton, NFT, Payment-channels)
* ✅ Wallet operations (Simple (V1), V2, V3, V4 (plugins), ~~Lockup~~, Highload, DNS, Jetton, NFT, Payment-channels)
* ✅ HashMap, HashMapE, PfxHashMap and PfxHashMapE serialization / deserialization

### Todo
* Re-test lockup (restricted) wallet
* Support tuple and list as arguments for runMethod
* Add highload wallet support
* Fix dictionary de/serialization with one entry
* Improve test coverage and add more integration tests
* Add methods to store jettons metadata onchain
Expand Down
1 change: 1 addition & 0 deletions smartcontract/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Currently, following wallet versions and revisions are supported:
* v4R1
* v4R2 - subscription, plugins [(see usage example)](plugin-example.md)
* ~~Lockup - restricted [(see usage example)](./src/test/java/org/ton/java/smartcontract/integrationtests/TestLockupWalletDeployTransfer.java)~~
* Highload [(see usage example)](./src/test/java/org/ton/java/smartcontract/integrationtests/TestWalletV2Highload.java)
* Dns [(see usage example)](dns-example.md)
* Jetton [(see usage example)](jetton-example.md)
* NFT [(see usage example)](nft-example.md)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ public void testWalletV2HighloadSendTo84() throws InterruptedException {
.highloadQueryId(BigInteger.valueOf((long) Math.pow(Instant.now().getEpochSecond() + 5 * 60L, 32))
.add(new BigInteger(String.valueOf(Instant.now().getEpochSecond()))))
.wc(0L)

.build();

Wallet wallet = new Wallet(WalletVersion.highload, options);
Expand Down

0 comments on commit 84ec9cf

Please sign in to comment.