Casey Key

Results 15 comments of Casey Key

Thank you so much! Passing the name prop down to my component's render function and assigning it to the parent element, a div, fixed my issue. Thanks!

This name made me believe this would be like NetlifyCMS where it can be added to any project, such as a separate React application. However, after looking into this, it...

Having an API for profile statistics would allow for dynamic language badges. I went to generate those HTML elements from the sourcerer.io profile page and noticed they would remain the...

Make sure you have PostInstall installed via npm install postcss or if you're using Gatsby install the gatsby-plugin-postcss. Then create a config file. This is the one I made to...

@wuweiweiwu This is great, could you merge it?

> `truffle develop` uses [Ganache](https://github.com/trufflesuite/ganache-core) under the hood and Web3.js for [calling](https://github.com/trufflesuite/drizzle/blob/develop/packages/store/src/contracts/contractsSaga.js#L130) methods. It sounds like this is an issue of Web3.js' default gas as well as Ganache. You're right,...

Should I be estimating the cost of the transaction within my dApp, and then pass that estimation as the gas limit for the transaction? Example: ``` let estimate = web3.estimate.......

> I had the same issue but now its fixed. > When using `web3` the default gas usage is set to 90000 which is not enough for some transaction. This...

> @caseyjkey, as you said, I have written a code that estimate the gas used with the web3 instance injected into the drizzle prop. > > ```js > handleSubmit(event) {...