Coder Social home page Coder Social logo

Comments (2)

golddydev avatar golddydev commented on August 17, 2024

Hi, I solved this issue.
We can do this using lucid-cardano.

The cardano zero address is here

addr1vyqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqkdl5mw
const inputs = C.TransactionInputs.new();
inputs.add(
  C.TransactionInput.new(
    C.TransactionHash.from_hex(
      '706f481e44126b9de1c394e1ade248b15c435216fba3ecfb40d21c5c291be75d',
    ),
    C.BigNum.zero(),
  ),
);
const outputs = C.TransactionOutputs.new();
outputs.add(
  C.TransactionOutput.new(
    C.Address.from_bech32(
      'addr1qx2vnfzpeuvdcym8y7v5qnz2mc289ue6tfr0xynyaqnm0rhuanngtqdu53qy0c0zxxed8hdnmkl66l0uvw68q8elp4nsxyap30',
    ),
    C.Value.new(C.BigNum.from_str('1000000')),
  ),
);
const fee = C.BigNum.from_str('500000');
const witnessSet = C.TransactionWitnessSet.new();
const auxData = C.AuxiliaryData.new();
const metadata = C.GeneralTransactionMetadata.new();
const metadataMap = C.MetadataMap.new();
const metadataList = C.MetadataList.new();
metadataList.add(C.TransactionMetadatum.new_text('Hello World'));
metadataMap.insert(
  C.TransactionMetadatum.new_text('msg'),
  C.TransactionMetadatum.new_list(metadataList),
);
const metadataum = C.TransactionMetadatum.new_map(metadataMap);
metadata.insert(C.BigNum.from_str('674'), metadataum);
auxData.set_metadata(metadata);
const transaction = C.Transaction.new(
  C.TransactionBody.new(inputs, outputs, fee),
  witnessSet,
  auxData,
);

from lucid.

golddydev avatar golddydev commented on August 17, 2024

Here is easier way for this.

const lucid = await Lucid.new(blockfrostProvider, 'Mainnet');
const utxos = await lucid.utxosAt(zeroAddress);
lucid.selectWalletFrom({
  address: zeroAddress,
  utxos,
});
const tx = await lucid
  .newTx()
  .payToAddress(bech32Address, {
    lovelace: 2000000n,
  })
  .addSigner(bech32Address)
  .validTo(Date.now() + 1000 * 120)
  .attachMetadata(674, {
    msg: [
      'Only for verification',
    ],
  })
  .complete();

from lucid.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.