anton icon indicating copy to clipboard operation
anton copied to clipboard

Indexing for TON blockchain

Results 11 anton issues
Sort by recently updated
recently updated
newest added

Token bridge: https://github.com/ton-blockchain/token-bridge-func/blob/main/src/func/jetton-bridge/utils.fc#L102 https://github.com/ton-blockchain/token-bridge-func/blob/main/src/func/jetton-bridge/jetton-bridge.fc#L181 https://github.com/ton-blockchain/token-bridge-func/blob/main/src/func/jetton-bridge/jetton-bridge.fc#L201 Liquid staking contracts: https://github.com/ton-blockchain/liquid-staking-contract/blob/main/contracts/messages.func#L96 https://github.com/ton-blockchain/liquid-staking-contract/blob/main/contracts/pool.func#L522

enhancement

https://github.com/gin-contrib/cache https://github.com/chenyahui/gin-cache

enhancement

Filter messages and transactions by created_at timestamp. Filter account states by updated_at timestamp.

enhancement

Both latest and historical account states.

enhancement

Descending order: ``` 945ms | GET "/api/v0/accounts?interface=dns_nft_item&order=desc&limit=20&latest=true" 3.73s | GET "/api/v0/accounts?interface=jetton_minter&order=desc&limit=20&latest=true" 4.79s | GET "/api/v0/accounts?interface=nft_collection&order=desc&limit=20&latest=true" 10.7s | GET "/api/v0/accounts?interface=wallet_v1r3&order=desc&limit=20&latest=true" ``` Ascending order: ``` 4.07s | GET "/api/v0/accounts?interface=jetton_minter&order=asc&limit=20&latest=true" 10.5s | GET...

bug

Some contracts already have TL-B descriptions for its messages. For example, [Telemint](https://github.com/TelegramMessenger/telemint/blob/main/telemint.tlb) or [STON.FI](https://docs.ston.fi/docs/developer-section/api-reference). Anton should be able to understand TL-B constructors to make adding new contracts as easy as...

enhancement

TON Foundation nominator pool: https://github.com/ton-blockchain/nominator-pool TON Whales nominator pool: https://github.com/tonwhales/ton-nominators

enhancement
contracts

Anton has `abi` package, which can emulate execution of get-methods on provided account state, get-method [description](https://github.com/tonindexer/anton/blob/main/abi/README.md) and arguments. The code can be seen [here](https://github.com/tonindexer/anton/blob/main/abi/get_emulator.go). It is possible to add an...

enhancement

Hi, team I want add Websocket endpoints for anton to notify in realtime. Here I brief my thoughts and want your feedbacks. 1, add websocket API endpoint for blocks/txs/accounts/messages, the...