Metadata for fair launch (#461)

* added deploy cmds

* Too specific

* Add metadata support for fair launch tokens.

* Fix seller fee basis points
This commit is contained in:
Jordan Prince 2021-09-21 21:27:24 -05:00 committed by GitHub
parent b48aefdfaa
commit ac688fd904
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -844,7 +844,7 @@ program
.option('-s, --symbol <string>', 'symbol')
.option('-u, --uri <string>', 'uri')
.option(
'-sfbp, --seller_fee_basis_points <string>',
'-sfbp, --seller-fee-basis-points <string>',
'seller fee basis points',
)
.option(
@ -864,7 +864,7 @@ program
creators,
isNotMutable,
} = cmd.opts();
const sellerFeeBasisPointsNumber = parseFloat(sellerFeeBasisPoints);
const sellerFeeBasisPointsNumber = parseInt(sellerFeeBasisPoints);
const creatorsListPre = creators ? creators.split(',') : [];
const creatorsList = [];