-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
259 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
// Defaul Tact error code for invalid owner | ||
const ERROR_CODE_INVALID_OWNER: Int = 132; | ||
// Jetton wallet balance doesn't have enough tokens | ||
const ERROR_CODE_NOT_ENOUGH_BALANCE: Int = 6911; | ||
const ERROR_CODE_NOT_ENOUGH_BALANCE: Int = 6901; | ||
// Need more TONs in request for fee | ||
const ERROR_CODE_NEED_FEE: Int = 6912; | ||
const ERROR_CODE_NEED_FEE: Int = 6902; | ||
// Jetton already initialized | ||
const ERROR_JETTON_INITIALIZED: Int = 6913; | ||
const ERROR_JETTON_INITIALIZED: Int = 6903; | ||
// Jetton already initialized | ||
const ERROR_JETTON_UNKNOWN_PARAMETER: Int = 6914; | ||
const ERROR_JETTON_UNKNOWN_PARAMETER: Int = 6904; | ||
// Jetton max supply exceeded | ||
const ERROR_MAX_SUPPLY_EXCEEDED: Int = 6905; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.