Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rework TON modules, relying on an improved API #87

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Solana Token module
* [Oleg Makaussov](https://github.com/Lorgansar)
- Cardano Tokens modules
- Toncoin modules
* [Kirill Kuzminykh](https://github.com/Oskal174)
- Rootstock modules
- Solana Token module
3 changes: 2 additions & 1 deletion Engine/Enums.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,13 @@ enum PrivacyModel
case Shielded; // The only allowed values are `-?` and `+?`
}

// This is for modules where `extra_indexed` is specified: here we can chose which entity it directs to
// This is for modules where `extra_indexed` is specified: here we can choose which entity it directs to
enum SearchableEntity: string
{
case Block = 'block';
case Transaction = 'transaction';
case Address = 'address';
case Handle = 'handle';
case Any = 'any';
case Other = 'other'; // Something that can't be found directly (not really indexed)
}
245 changes: 0 additions & 245 deletions Modules/Common/TONLikeJettonModule.php

This file was deleted.

Loading