This website requires JavaScript.
Explore
Help
Sign In
LumeWeb
/
ethers-rs
Watch
1
Star
0
Fork
You've already forked ethers-rs
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
ffb8582dd5
ethers-rs
/
ethers-solc
/
test-data
/
dapp-sample
/
src
/
Dapp.sol
6 lines
89 B
Solidity
Raw
Normal View
History
Unescape
Escape
feat: improved solc management (#539) * feat: improved solc management * test: add basic test * rustfmt * rustfmt * feat: add support for lib paths * test: add dapp testing data * feat: support dapp style libs * fix: doc test * use SOLC_path by default * docs: import readme * feat: add diagnostics * chore: cleanup * docs: update compile docs * style: use red for error msg * style: simplifiy error format * chore: add newline on successful compiler run log * feat: allow ignoring error codes so that they do not get logged * chore: use solc 0.6.6 to match CI Version * fix: make constructor public in hardhat tests Co-authored-by: Georgios Konstantopoulos <me@gakonst.com>
2021-10-30 17:59:44 +00:00
// SPDX-License-Identifier: GPL-3.0-or-later
refactor!: make artifactoutput a trait (#579) * feat: add artifacts trait * add artifactsoutput trait * deprecated old artifactoutput * feat: better artifacts handling * force update * feat: update metadata artifacts * feat: add default to types * feat: make useliteralcontent optional * feat: replace ProjectCompilerOutput with struct * docs * add output function * feat: add Artifact trait for reading Abi/Bytes from an artifact * feat(solc): replace () for empty artifacts with a conditional check As discussed with @mattsse the abstraction here might not be super clean, so we should revisit this if we do not like it * chore: fix doctest Co-authored-by: Georgios Konstantopoulos <me@gakonst.com>
2021-11-15 23:29:06 +00:00
pragma solidity
>=
0
.
6
.
6
;
feat: improved solc management (#539) * feat: improved solc management * test: add basic test * rustfmt * rustfmt * feat: add support for lib paths * test: add dapp testing data * feat: support dapp style libs * fix: doc test * use SOLC_path by default * docs: import readme * feat: add diagnostics * chore: cleanup * docs: update compile docs * style: use red for error msg * style: simplifiy error format * chore: add newline on successful compiler run log * feat: allow ignoring error codes so that they do not get logged * chore: use solc 0.6.6 to match CI Version * fix: make constructor public in hardhat tests Co-authored-by: Georgios Konstantopoulos <me@gakonst.com>
2021-10-30 17:59:44 +00:00
contract
Dapp
{
}