Skip to content

Commit 51e7cf1

Browse files
committed
feat: deploying se without na
1 parent f8286ad commit 51e7cf1

File tree

139 files changed

+220144
-6358
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+220144
-6358
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"_format": "hh-sol-dbg-1",
3+
"buildInfo": "../../../../../build-info/720746d0724d0e722679c41ccb24f027.json"
4+
}
Lines changed: 238 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,238 @@
1+
{
2+
"_format": "hh-sol-artifact-1",
3+
"contractName": "ERC677Token",
4+
"sourceName": "@chainlink/contracts/src/v0.4/ERC677Token.sol",
5+
"abi": [
6+
{
7+
"constant": false,
8+
"inputs": [
9+
{
10+
"name": "spender",
11+
"type": "address"
12+
},
13+
{
14+
"name": "value",
15+
"type": "uint256"
16+
}
17+
],
18+
"name": "approve",
19+
"outputs": [
20+
{
21+
"name": "",
22+
"type": "bool"
23+
}
24+
],
25+
"payable": false,
26+
"stateMutability": "nonpayable",
27+
"type": "function"
28+
},
29+
{
30+
"constant": true,
31+
"inputs": [],
32+
"name": "totalSupply",
33+
"outputs": [
34+
{
35+
"name": "",
36+
"type": "uint256"
37+
}
38+
],
39+
"payable": false,
40+
"stateMutability": "view",
41+
"type": "function"
42+
},
43+
{
44+
"constant": false,
45+
"inputs": [
46+
{
47+
"name": "from",
48+
"type": "address"
49+
},
50+
{
51+
"name": "to",
52+
"type": "address"
53+
},
54+
{
55+
"name": "value",
56+
"type": "uint256"
57+
}
58+
],
59+
"name": "transferFrom",
60+
"outputs": [
61+
{
62+
"name": "",
63+
"type": "bool"
64+
}
65+
],
66+
"payable": false,
67+
"stateMutability": "nonpayable",
68+
"type": "function"
69+
},
70+
{
71+
"constant": false,
72+
"inputs": [
73+
{
74+
"name": "_to",
75+
"type": "address"
76+
},
77+
{
78+
"name": "_value",
79+
"type": "uint256"
80+
},
81+
{
82+
"name": "_data",
83+
"type": "bytes"
84+
}
85+
],
86+
"name": "transferAndCall",
87+
"outputs": [
88+
{
89+
"name": "success",
90+
"type": "bool"
91+
}
92+
],
93+
"payable": false,
94+
"stateMutability": "nonpayable",
95+
"type": "function"
96+
},
97+
{
98+
"constant": true,
99+
"inputs": [
100+
{
101+
"name": "who",
102+
"type": "address"
103+
}
104+
],
105+
"name": "balanceOf",
106+
"outputs": [
107+
{
108+
"name": "",
109+
"type": "uint256"
110+
}
111+
],
112+
"payable": false,
113+
"stateMutability": "view",
114+
"type": "function"
115+
},
116+
{
117+
"constant": false,
118+
"inputs": [
119+
{
120+
"name": "to",
121+
"type": "address"
122+
},
123+
{
124+
"name": "value",
125+
"type": "uint256"
126+
}
127+
],
128+
"name": "transfer",
129+
"outputs": [
130+
{
131+
"name": "",
132+
"type": "bool"
133+
}
134+
],
135+
"payable": false,
136+
"stateMutability": "nonpayable",
137+
"type": "function"
138+
},
139+
{
140+
"constant": true,
141+
"inputs": [
142+
{
143+
"name": "owner",
144+
"type": "address"
145+
},
146+
{
147+
"name": "spender",
148+
"type": "address"
149+
}
150+
],
151+
"name": "allowance",
152+
"outputs": [
153+
{
154+
"name": "",
155+
"type": "uint256"
156+
}
157+
],
158+
"payable": false,
159+
"stateMutability": "view",
160+
"type": "function"
161+
},
162+
{
163+
"anonymous": false,
164+
"inputs": [
165+
{
166+
"indexed": true,
167+
"name": "from",
168+
"type": "address"
169+
},
170+
{
171+
"indexed": true,
172+
"name": "to",
173+
"type": "address"
174+
},
175+
{
176+
"indexed": false,
177+
"name": "value",
178+
"type": "uint256"
179+
},
180+
{
181+
"indexed": false,
182+
"name": "data",
183+
"type": "bytes"
184+
}
185+
],
186+
"name": "Transfer",
187+
"type": "event"
188+
},
189+
{
190+
"anonymous": false,
191+
"inputs": [
192+
{
193+
"indexed": true,
194+
"name": "owner",
195+
"type": "address"
196+
},
197+
{
198+
"indexed": true,
199+
"name": "spender",
200+
"type": "address"
201+
},
202+
{
203+
"indexed": false,
204+
"name": "value",
205+
"type": "uint256"
206+
}
207+
],
208+
"name": "Approval",
209+
"type": "event"
210+
},
211+
{
212+
"anonymous": false,
213+
"inputs": [
214+
{
215+
"indexed": true,
216+
"name": "from",
217+
"type": "address"
218+
},
219+
{
220+
"indexed": true,
221+
"name": "to",
222+
"type": "address"
223+
},
224+
{
225+
"indexed": false,
226+
"name": "value",
227+
"type": "uint256"
228+
}
229+
],
230+
"name": "Transfer",
231+
"type": "event"
232+
}
233+
],
234+
"bytecode": "0x",
235+
"deployedBytecode": "0x",
236+
"linkReferences": {},
237+
"deployedLinkReferences": {}
238+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"_format": "hh-sol-dbg-1",
3+
"buildInfo": "../../../../../build-info/720746d0724d0e722679c41ccb24f027.json"
4+
}

0 commit comments

Comments
 (0)