ethers-solc 1.0.2

Utilites for working with solc
Documentation
1
2
3
4
5
6
7
8
9
10
11
object "SimpleStore" {
  code {
    datacopy(0, dataoffset("Runtime"), datasize("Runtime"))
    return(0, datasize("Runtime"))
  }
  object "Runtime" {
    code {
      calldatacopy(0, 0, 36) // write calldata to memory
    }
  }
}