Back to all updates

almost 4 years ago

Share your knowledge

Have you checked out the XDC Developer Forum

 

If you have a technical question, tips or tricks, or any other technical guidance - it might help your fellow developer. Share it on the XDC Developer Forum to help out and get a shot at the Developer Forum MVP prizes 

 

Take a look at these and many more helpful articles that were already posted by developers working with the XDC network. 

Interacting with Smart Contracts on XDC Network Explorer - by ruslan wing
#xinfin | #xdcnetwork | #explorer | #xdcscan

On XinFin (XDC Network) Explorer, users can interact with any smart contract address with the contract code verified on XinFin Explorer.

There are quite a number of information that the public can extract out of a verified smart contract on XinFin Explorer. One of the important information that users can get is the balances of any wallet address for a token contract.

. . .

 

Learn About Solidity – Constructors with Examples. - by daniel weber
#solidity | #web3 | #blockchain

A constructor is a special method in any object-oriented programming language which gets called whenever an object of a class is initialized. It is totally different in case of Solidity, Solidity provides a constructor declaration inside the smart contract and it invokes only once when the contract is deployed and is used to initialize the contract state. A default constructor is created by the compiler if there is no explicitly defined constructor.

. . .