create-ponder 0.0.4 → 0.0.5

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.
@@ -76,7 +76,6 @@ const fromBasic = (options) => {
76
76
  },
77
77
  networks: [
78
78
  {
79
- kind: "evm",
80
79
  name: "mainnet",
81
80
  chainId: 1,
82
81
  rpcUrl: `process.env.PONDER_RPC_URL_1`,
@@ -84,7 +83,6 @@ const fromBasic = (options) => {
84
83
  ],
85
84
  sources: [
86
85
  {
87
- kind: "evm",
88
86
  name: "ExampleContract",
89
87
  network: "mainnet",
90
88
  address: "0x0",
@@ -101,7 +101,6 @@ const fromEtherscan = async (options) => {
101
101
  },
102
102
  networks: [
103
103
  {
104
- kind: "evm",
105
104
  name: network.name,
106
105
  chainId: network.chainId,
107
106
  rpcUrl: `process.env.PONDER_RPC_URL_${network.chainId}`,
@@ -109,7 +108,6 @@ const fromEtherscan = async (options) => {
109
108
  ],
110
109
  sources: [
111
110
  {
112
- kind: "evm",
113
111
  name: contractName,
114
112
  network: network.name,
115
113
  abi: abiRelativePath,
@@ -102,7 +102,6 @@ const fromSubgraph = (options) => {
102
102
  }
103
103
  if (!ponderNetworks.map((n) => n.name).includes(network)) {
104
104
  ponderNetworks.push({
105
- kind: "evm",
106
105
  name: network,
107
106
  chainId,
108
107
  rpcUrl: `process.env.PONDER_RPC_URL_${chainId}`,
@@ -120,7 +119,6 @@ const fromSubgraph = (options) => {
120
119
  );
121
120
  (0, import_node_fs.copyFileSync)(abiAbsolutePath, ponderAbiAbsolutePath);
122
121
  return {
123
- kind: "evm",
124
122
  name: source.name,
125
123
  network,
126
124
  address: source.source.address,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-ponder",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Tool to bootstrap a Ponder project",
5
5
  "license": "MIT",
6
6
  "author": "olias.eth",