import { Ecanna, BN, Buffer } from "ecanna/dist" import { TKNVMAPI, KeyChain, UTXOSet, UnsignedTx, Tx, InitialStates, SECPMintOutput, SECPTransferOutput } from "ecanna/dist/apis/tknvm" import { GetUTXOsResponse } from "ecanna/dist/apis/tknvm/interfaces" import { PrivateKeyPrefix, DefaultLocalGenesisPrivateKey } from "ecanna/dist/utils" const ip: string = "localhost" const port: number = 9650 const protocol: string = "http" const networkID: number = 1337 const ecanna: Ecanna = new Ecanna(ip, port, protocol, networkID) const tknchain: TKNVMAPI = ecanna.TKNChain() const xKeychain: KeyChain = tknchain.keyChain() const privKey: string = `${PrivateKeyPrefix}${DefaultLocalGenesisPrivateKey}` xKeychain.importKey(privKey) const xAddresses: Buffer[] = tknchain.keyChain().getAddresses() const xAddressStrings: string[] = tknchain.keyChain().getAddressStrings() const outputs: SECPMintOutput[] = [] const threshold: number = 1 const locktime: BN = new BN(0) const memo: Buffer = Buffer.from( "TKNVM utility method buildCreateAssetTx to create an ANT" ) const name: string = "TestToken" const symbol: string = "TEST" const denomination: number = 3 const main = async (): Promise => { const tknvmUTXOResponse: GetUTXOsResponse = await tknchain.getUTXOs( xAddressStrings ) const utxoSet: UTXOSet = tknvmUTXOResponse.utxos const amount: BN = new BN(507) const vcapSecpOutput = new SECPTransferOutput( amount, xAddresses, locktime, threshold ) const initialStates: InitialStates = new InitialStates() initialStates.addOutput(vcapSecpOutput) const secpMintOutput: SECPMintOutput = new SECPMintOutput( xAddresses, locktime, threshold ) outputs.push(secpMintOutput) const unsignedTx: UnsignedTx = await tknchain.buildCreateAssetTx( utxoSet, xAddressStrings, xAddressStrings, initialStates, name, symbol, denomination, outputs, memo ) const tx: Tx = unsignedTx.sign(xKeychain) const txid: string = await tknchain.issueTx(tx) console.log(`Success! TXID: ${txid}`) } main()