UNPKG
@broxus/tip4
Version:
latest (2.0.0)
2.0.0
1.0.1
1.0.0
Set of ready-to-use tvm nft token contracts following tip4 standard
github.com/broxus/tip4
@broxus/tip4
/
scripts
/
0-reset-migration.ts
15 lines
(11 loc)
•
229 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
{
Migration
}
from
"./migration"
;
const
migration =
new
Migration
();
async
function
main
(
) { migration.
reset
(); }
main
() .
then
(
() =>
process.
exit
(
0
)) .
catch
(
(
e
) =>
{
console
.
log
(e); process.
exit
(
1
); });