create-ponder 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -1
- package/dist/index.js +1 -1
- package/dist/templates/etherscan.js +4 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
|
-
#
|
|
1
|
+
# create-ponder
|
|
2
|
+
|
|
3
|
+
`create-ponder` is a CLI tool for creating projects using the Ponder framework.
|
|
4
|
+
|
|
5
|
+
## Documentation
|
|
6
|
+
|
|
7
|
+
For full documentation, visit [ponder.sh](https://ponder.sh/getting-started).
|
package/dist/index.js
CHANGED
|
@@ -77,7 +77,10 @@ const fromEtherscan = async (options) => {
|
|
|
77
77
|
ponderRootDir,
|
|
78
78
|
abiRelativePath
|
|
79
79
|
);
|
|
80
|
-
(0, import_node_fs.writeFileSync)(
|
|
80
|
+
(0, import_node_fs.writeFileSync)(
|
|
81
|
+
abiAbsolutePath,
|
|
82
|
+
import_prettier.default.format(abi, { parser: "json" })
|
|
83
|
+
);
|
|
81
84
|
const schemaGraphqlFileContents = `
|
|
82
85
|
type ExampleEntity @entity {
|
|
83
86
|
id: ID!
|