GithubHelp home page GithubHelp logo

Customize Wallet about bitnfc HOT 1 OPEN

720kb avatar 720kb commented on June 13, 2024
Customize Wallet

from bitnfc.

Comments (1)

makevoid avatar makevoid commented on June 13, 2024

Hi, yes potentially, especially for majour crypto currencies it will be quite easy, you need to use a different bitcore-lib settings and find a block explorer that supports the calls needed (roughly: getBalance, getUTXOs, broadcastTransaction). So for example for litecoin you can pass to bitcore-lib the new network settings, for example these:

const litecoinNet = {
  name: 'litecoin',
  alias: 'lite',
  pubkeyhash: 0x30,
  privatekey: 0xb0,
  scripthash: 0x32,
  xpubkey: 0x019da462,
  xprivkey: 0x019d9cfe,
  networkMagic: 0xfbc0b6db,
  port: 9333,
  dnsSeeds: [
    'dnsseed.litecointools.com',
    'dnsseed.litecoinpool.org',
    'dnsseed.ltc.xurious.com',
    'dnsseed.koin-project.com',
    'seed-a.litecoin.loshan.co.uk',
    'dnsseed.thrasher.io'
  ]
}

const liteNet = bitcore.Networks.add(litecoinNet)

and then select that network whenever you generate or load any private key:

return new bitcore.PrivateKey($window.localStorage.bitNfcPrivateKey);


Otherwise you can use a bitcore-lib fork if present, for example, litecoin has this: https://github.com/litecoin-project/litecore-lib

Then switch the blockchain.info URLS, calls, and all relative methods that use their responses:

getBalance

'url': 'https://blockchain.info/unspent',

getUTXOs

'url': 'https://blockchain.info/q/addressbalance/' + address,

pushTX

'url': 'https://blockchain.info/pushtx',


You can switch them to (keeping litecoin as example):

GetBalance()

Generic documentation:

https://www.blockcypher.com/dev/bitcoin/#address-balance-endpoint

example for litecoin:

https://api.blockcypher.com/v1/ltc/main/addrs/LTCPodGk5FwcJaRzH9yKnwicxzFUbxp6tN/balance

etc...

all assuming if you're using a crypto currency forked off bitcoin, if the currency is very different (ethereum) then you could probably reuse only the UI / NFC provider / Angular controllers part

hope this helps

from bitnfc.

Related Issues (10)

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.