Technical

How can I develop and deploy a DApp (Decentralized Application) on Qtum?

DApps use a smart contract working with external servers and user interfaces. Qtum smart contracts are written in the Solidity programming language and compiled to EVM bytecode. That code is published to the blockchain using a contract create transaction which costs approximately 1.1 QTUM in gas and transaction fees. The smart contract operation can be linked with a server and user interfaces (for example on web or mobile apps) to complete the Decentralized Application. Publishing a smart contract on Qtum is permissionless (anyone can do it). Qtum smart contract and DApp development follows familiar patterns from Ethereum and web/mobile apps. To engage with Qtum’s experienced DApp team please submit the DApp application form.Have you had a chance to answer the previous question?

How do I set the confirmation number when the exchange handles user recharge?

Recommended to be set to 10 to 20.

How does the exchange handle the recharge of the QRC20 Token?

Please refer to QRC20 Integration Technical Document

What is the BIP44 Coin Type value of Qtum?

BIP44 Coin Type is 88.

What is the difference between Qtum and Bitcoin RPC interface?

In addition to adding createcontract\sendtocontract\callcontract\searchlogs\gettransactionreceipt , all the rest of the RPC interfaces are almost identical to Bitcoin.

How to set the gas limit and price of calling contract?

It is recommended to fix the gas price to 0.00000040. For QRC20 Token transactions, the gas limit is recommended to be set to 250000.

How is the remaining gas returned after the contract is called?

When the transaction is confirmed, the more paid gas will be in the second transaction of the block in the form of a coin stake transaction.

How to get test coins?

Please go to Testnet Faucet to apply.

Does Qtum support calling contracts with multiple signature addresses?

Multi-signature currently does not support calling contracts and sending and receiving QRC20 Tokens. It is planned that this feature will be implemented in x86 virtual machines.

What public APIs are available for Qtum nodes, how do you use them?

qtum.info API Documentation https://github.com/qtumproject/qtuminfo/blob/master/packages/qtuminfo-api/README.md ExamplesMainnet API = https://qtum.info/api/... Testnet API = https://testnet.qtum.info/api/... Block data: https://qtum.info/api/block/100000 Transaction data :https://qtum.info/api/tx/c4f906c845f7e4a9bc6cfbb1c581ac12325841d7ccac0c63067c84b3aaed38f7

How to use mobile wallet API?

Documentation https://github.com/qtumproject/mobile-api-server Examples: Unspent transactions https://walletapi.qtum.org/outputs/unspent/Qgdj4FrXXxLVkxPDYtFNNGZNd9TJrNjtpM Last added contracts https://walletapi.qtum.org/contracts/last-added

See also the iOS wallet code RequestManager.m and the Android code QtumRestService.java, which should give all the calls these wallets use with this mobile API.

Do you have an Amazon AWS platform?

Yes, Qtum’s development platform is available on Amazon Web Services. Users across the enterprise and elsewhere will now be able to develop and deploy their own smart contracts from this ready-to-use Amazon Machine Image (AMI) featuring Qtum core, and the Qmix Integrated Development Environment (IDE). Blog https://blog.qtum.org/qtum-platform-now-available-through-amazon-web-services-6edb41fcad11 AWS AMI https://aws.amazon.com/marketplace/pp/B07FB214D3

What wallets/nodes are available for smart contract transactions?

1. The Qtum Core wallet is a full node with smart contract capability via GUI or command line. Available for multiple platforms. Works on Mainnet, Testnet & Regtest. Documentation https://github.com/qtumproject/documents/tree/master/en/Qtum-Wallet-Tutorial Releases https://github.com/qtumproject/qtum/releases

2. The Qtum web wallet is a light wallet that can create, send and call contracts, but currently can’t send QTUM to a contract address. Works on Mainnet and Testnet. Documentation https://github.com/qtumproject/documents/tree/master/en/QTUM-WebWallet-usage Wallet Website https://qtumwallet.org/

3. The Chrome extension Qrypto is a light wallet that can make DApp interface contract calls through the Qweb3 library. Works on Mainnet, Testnet & Regtest Documentation https://github.com/bodhiproject/qrypto Plugin https://chrome.google.com/webstore/detail/qrypto/hdmjdgjbehedbnjmljikggbmmbnbmlnd Qweb3 library https://www.npmjs.com/package/qweb3

What developer blogs are available?

See Qtum101 at https://blog.qtum.org/tagged/qtum-101 such as: QTUM: Decentralized Governance Protocol Video Demo Atomic Cross-Chain Swaps on Qtum How to: Build a DApp based on Qtum and IPFS QTUM Tutorial: Building a Contract Calling Raw Transaction Developers Guide to the Qtum GitHub

See Unita blogs at https://blog.qtum.org/@UnitaNetwork such as: QtumX Reaches 10,000 TPS in Benchmark Tests Atomic Cross-Chain Swaps on Qtum DDAO: Decentralized Data Access Object SCAR: A New Scalable Consensus Algorithm

How can I use the Explorers to monitor smart contract transactions?

See transaction detail and the event log with qtum.info, for example https://qtum.info/tx/72c03e197c8ab7ee4e3e4bc4edf0b184500cad335fa812e7aebbb7a682559871 Click on the red script to expand.

See QRC20 balances by entering an address in the “BalanceOf” field for a contract, for example https://explorer.qtum.org/token/5a4b7889cad562d6c099bf877c8f5e3d66d579f8/read-smart-contract

See the storage table, for example https://explorer.qtum.org/address/5a4b7889cad562d6c099bf877c8f5e3d66d579f8

How can I setup Docker and run a Regtest Qtum node?

IAME blog https://medium.com/@IAMEIdentity/qtum-201-setting-up-your-qtum-node-e2d1d814e56b

How do I access the Qtum Testnet?

User guide https://docs.qtum.site/en/Testnet-User-Guide.html Explorer https://testnet.qtum.info/ Explorer 2 https://testnet.qtum.org/ Faucet http://testnet-faucet.qtum.info/#!/

Is there a command line smart contract tool like solc for Qtum?

Yes, see solar https://github.com/qtumproject/solar

Is there a web IDE like remix for Qtum?

Yes, Qmix https://qmix.blockchainspaceman.com/

Last updated