You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 17, 2023. It is now read-only.
I created a workable/deployable jetton demo project based on your jett.tact example.
I want to share with people the guide on deployment for this example according to what was in the footstep promised, but I can't figure out how to solve an issue with output files.
When I commented following code in jetton_SampleJetton.ts:
if (res.exitCode !== 0 && res.exitCode !== 1) {
if (SampleJetton_errors[res.exitCode]) {
throw new ComputeError(SampleJetton_errors[res.exitCode].message, res.exitCode, { logs: res.vmLogs });
} else {
throw new ComputeError('Exit code: ' + res.exitCode, res.exitCode, { logs: res.vmLogs });
}
}
all build and test processes from first sight work nicely (didn't test properly yet).
What can I do to exclude this problem from built output files?
The text was updated successfully, but these errors were encountered:
If you are commenting this code, you are ignoring errors. If you have typescript compilation errors, then try to update ton-core library to the latest version in your project.
I created a workable/deployable jetton demo project based on your jett.tact example.
I want to share with people the guide on deployment for this example according to what was in the footstep promised, but I can't figure out how to solve an issue with output files.
When I commented following code in
jetton_SampleJetton.ts
:all build and test processes from first sight work nicely (didn't test properly yet).
What can I do to exclude this problem from built output files?
The text was updated successfully, but these errors were encountered: