|
4 | 4 | */ |
5 | 5 | import { GenericContractsDeclaration } from "~~/utils/scaffold-eth/contract"; |
6 | 6 |
|
7 | | -const deployedContracts = { |
8 | | - 31337: { |
9 | | - YourContract: { |
10 | | - address: "0x5FbDB2315678afecb367f032d93F642f64180aa3", |
11 | | - abi: [ |
12 | | - { |
13 | | - inputs: [ |
14 | | - { |
15 | | - internalType: "address", |
16 | | - name: "_owner", |
17 | | - type: "address", |
18 | | - }, |
19 | | - ], |
20 | | - stateMutability: "nonpayable", |
21 | | - type: "constructor", |
22 | | - }, |
23 | | - { |
24 | | - anonymous: false, |
25 | | - inputs: [ |
26 | | - { |
27 | | - indexed: true, |
28 | | - internalType: "address", |
29 | | - name: "greetingSetter", |
30 | | - type: "address", |
31 | | - }, |
32 | | - { |
33 | | - indexed: false, |
34 | | - internalType: "string", |
35 | | - name: "newGreeting", |
36 | | - type: "string", |
37 | | - }, |
38 | | - { |
39 | | - indexed: false, |
40 | | - internalType: "bool", |
41 | | - name: "premium", |
42 | | - type: "bool", |
43 | | - }, |
44 | | - { |
45 | | - indexed: false, |
46 | | - internalType: "uint256", |
47 | | - name: "value", |
48 | | - type: "uint256", |
49 | | - }, |
50 | | - ], |
51 | | - name: "GreetingChange", |
52 | | - type: "event", |
53 | | - }, |
54 | | - { |
55 | | - inputs: [], |
56 | | - name: "greeting", |
57 | | - outputs: [ |
58 | | - { |
59 | | - internalType: "string", |
60 | | - name: "", |
61 | | - type: "string", |
62 | | - }, |
63 | | - ], |
64 | | - stateMutability: "view", |
65 | | - type: "function", |
66 | | - }, |
67 | | - { |
68 | | - inputs: [], |
69 | | - name: "owner", |
70 | | - outputs: [ |
71 | | - { |
72 | | - internalType: "address", |
73 | | - name: "", |
74 | | - type: "address", |
75 | | - }, |
76 | | - ], |
77 | | - stateMutability: "view", |
78 | | - type: "function", |
79 | | - }, |
80 | | - { |
81 | | - inputs: [], |
82 | | - name: "premium", |
83 | | - outputs: [ |
84 | | - { |
85 | | - internalType: "bool", |
86 | | - name: "", |
87 | | - type: "bool", |
88 | | - }, |
89 | | - ], |
90 | | - stateMutability: "view", |
91 | | - type: "function", |
92 | | - }, |
93 | | - { |
94 | | - inputs: [ |
95 | | - { |
96 | | - internalType: "string", |
97 | | - name: "_newGreeting", |
98 | | - type: "string", |
99 | | - }, |
100 | | - ], |
101 | | - name: "setGreeting", |
102 | | - outputs: [], |
103 | | - stateMutability: "payable", |
104 | | - type: "function", |
105 | | - }, |
106 | | - { |
107 | | - inputs: [], |
108 | | - name: "totalCounter", |
109 | | - outputs: [ |
110 | | - { |
111 | | - internalType: "uint256", |
112 | | - name: "", |
113 | | - type: "uint256", |
114 | | - }, |
115 | | - ], |
116 | | - stateMutability: "view", |
117 | | - type: "function", |
118 | | - }, |
119 | | - { |
120 | | - inputs: [ |
121 | | - { |
122 | | - internalType: "address", |
123 | | - name: "", |
124 | | - type: "address", |
125 | | - }, |
126 | | - ], |
127 | | - name: "userGreetingCounter", |
128 | | - outputs: [ |
129 | | - { |
130 | | - internalType: "uint256", |
131 | | - name: "", |
132 | | - type: "uint256", |
133 | | - }, |
134 | | - ], |
135 | | - stateMutability: "view", |
136 | | - type: "function", |
137 | | - }, |
138 | | - { |
139 | | - inputs: [], |
140 | | - name: "withdraw", |
141 | | - outputs: [], |
142 | | - stateMutability: "nonpayable", |
143 | | - type: "function", |
144 | | - }, |
145 | | - { |
146 | | - stateMutability: "payable", |
147 | | - type: "receive", |
148 | | - }, |
149 | | - ], |
150 | | - inheritedFunctions: {}, |
151 | | - deployedOnBlock: 1, |
152 | | - }, |
153 | | - }, |
154 | | -} as const; |
| 7 | +const deployedContracts = {} as const; |
155 | 8 |
|
156 | 9 | export default deployedContracts satisfies GenericContractsDeclaration; |
0 commit comments