I have some doubts need to be cleared
I heard you can't send Bitcoin to Ethereum Wallet and the vice versa is also not valid.
What about sending BNB to Ethereum Wallet or the vice versa ?
Can we have BNB in Ethereum Wallet or ETH in Binance Wallet ?
If the answer is yes, since the are basically almost the same (ERC20 and BEP20).
Then is it possible to sell dan receive NFT from Binance Marketplace using ETH currency or using BNB in Ethereum marketplace ?
I asked this question because I want to make a marketplace based on Binance chain contract, but still able to accept ETH as the payment.
I need some clarification for this.
Thank you
Can we have BNB in Ethereum Wallet or ETH in Binance Wallet ?
Yes. Through bridges. It is a bridged token, a custodian based solution.
Then is it possible to sell dan receive NFT from Binance Marketplace using ETH
This is a business question to Binance Marketplace developer support, not for generic programming forum. There are no Binance business people here who can answer your question.
Related
I want to create a bsc( binance smart chain) but strangely, In official documentation, they create a network by geth only. then I was really confused. What is difference between bsc and ethereum network? Thanks.
I want to create a bsc( binance smart chain) but strangely, In official documentation, they create a network by geth only. then I was really confused. What is difference between bsc and ethereum network?
Binance Smart Chain forked GoEthereum (geth) software developed by Ethereum Foundation and many volunteers. This can be considered a hostile fork, as Binance does not seem to contribute back to the original geth, does not support geth maintenance or does not support any of the development communities (web3.js, web3.py, etc.)
Binance changed some geth parameters from the Ethereum mainnet, like block size. Also the transaction fees are artificially kept low, causing the network being unstable and hard to use for developers. Thus, BSC does not achieve any of decentralised qualities of blockchains.
Binance and Ethereum Foundation do not co-operate.
Most of the Ethereum software develop tools are compatible with Binance Smart Chain, as the EVM virtual machine is pretty much same (Binance has not done none of innovation or enhancements, the official statement of "significant changes" is questionable.) However, support for Binance Smart Chain is way worse, as Binance do not have active developer community and most of the Binance Smart Chain developers leech their information out from Ethereum support forums.
According to Binance's official faq:
Binance Smart Chain (BSC) is a hard fork of the Go Ethereum (Geth)
protocol, and as such, shares many similarities with the Ethereum
blockchain. However, BSC developers have made significant changes in
some key areas. The largest change is BSC's consensus mechanism, which
allows for cheaper and faster transactions.
Source: https://academy.binance.com/en/articles/binance-smart-chain-vs-ethereum-what-s-the-difference
I'm trying to learn how to mint NFT's in an economic way. I have some experience with smart contracts but it's a while ago. I have looked for an answer to this question but could not find it.
I have deployed this contract on testnet: https://github.com/0xcert/ethereum-erc721 and created an NFT by interacting with the contract.
Deploying the contract is very expensive on main-net, much more so than interacting with it.
Now I was wondering: isn't there any deployed contract on mainnet already? That I can use to mint an NFT?
A quick question. I used web3js lib to create an app in which a user can create his own account and also a wallet. My question is is that wallet can be used only with the ethereum coin transfer or can I use to store or transfer btc as well?
web3.js is strictly Ethereum specific library. It shares some of the cryptographic library dependencies with Bitcoin, but if you plan to create a non-custodial Bitcoin wallet there are better JavaScript libraries as starting points out there.
I am new to Ethereum, Blockchain Technology.I have been going through Tutorials on Ethereum and Smart Cotracts.
As per my Understanding, If we want to make any change to data members of the smart contact, it ll cost us some Ether right ? so , i am wondering how Free chat DApps work?. I mean, it should cost ether for storing the data of chats and transaction of data right ? or are they using any test networks such as kovan,rinkeby ?
Thanks in Advance
In addition to other answer, I don't think so your referenced Apps are using Ethereum blockchain to save chat messages as it always requires Gas to add anything in a public Ethereum blockchain network. To integrate chatting in your App you can use XMPP Framework.
Obviously you require to have a centralized server (Against the blockchain basic terminology) But chat history is not required to save on the server. It can only be saved on Users Device and can use end-to-end encryption. Server will only be required to implement socket-based communication by using XMPP framework. Or you can also use Firebase Realtime Database for a chat. But I totally agree it's against the basic blockchain rule of decentralization.
If you are using the public Ethereum blockchain it costs Ether to change data. It costs money to get these Ether so a Free chat on this network seems unlikely.
If you are using someone's private Ethereum blockchain it costs Ether to change data, but Ether has no value and can be given more or less easily (like Rinkeby).
If you are using your private Ethereum blockchain it costs Ether to change data, but you can get Ether easily at genesis block or mining Ether.
If you are using a private Ethereum blockchain like Quorum with GasPrice=0, you don't need Ether.
I need to add integration of Ethereum charging to my project.
I've done that with Bitcoin. It was easy. I just create a new receiver address for each payment, but it doesn't work with Ethereum.
Had somebody done that before?