We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Implement Transaction Builder to create a mixture of remittance and issuance of multiple assets and remittance of TPC in one transaction.
Steps
The text was updated successfully, but these errors were encountered:
TransactionBuilder.new .issue(issuer:, token_type:, amount:) .transfer(token:, sender:, receiver:, amount) .burn(token:, sender:, amount) .reissue(token:, amount) .payment(sender:, receiver:, amount) .build() => [[Token], [Tapyrus::Tx]] (発行したトークンの配列, ブロードキャストするTxの配列)
Sorry, something went wrong.
issue method can be separated by 3 types.
issue
TransactionBuilder.new .reissuable(issuer:, amount:) .non_reissuable(issuer:, amount:) .nft(issuer:) .transfer(token:, sender:, receiver:, amount) .burn(token:, sender:, amount) .reissue(token:, amount) .payment(sender:, receiver:, amount) .build() => [[Token], [Tapyrus::Tx]]
build() method may return multiple transactions because 2 transactions will be needed to issue new reissuable token
reissuable token
No branches or pull requests
Implement Transaction Builder to create a mixture of remittance and issuance of multiple assets and remittance of TPC in one transaction.
Steps
The text was updated successfully, but these errors were encountered: