Skip to content

Commit 7b2c89d

Browse files
committed
adjusted changes for velas
1 parent d769a6d commit 7b2c89d

Some content is hidden

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

47 files changed

+150842
-442
lines changed

artifacts/Babylonian.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"contractName": "Babylonian",
3+
"abi": [],
4+
"bytecode": "0x60566023600b82828239805160001a607314601657fe5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220985c2507c22b92fd31ed1c762df15159098d93a40a347fcfff54aeecd8722abd64736f6c63430006060033",
5+
"deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220985c2507c22b92fd31ed1c762df15159098d93a40a347fcfff54aeecd8722abd64736f6c63430006060033",
6+
"linkReferences": {},
7+
"deployedLinkReferences": {}
8+
}

artifacts/DeflatingERC20.json

Lines changed: 330 additions & 0 deletions
Large diffs are not rendered by default.

artifacts/ERC20.json

Lines changed: 330 additions & 0 deletions
Large diffs are not rendered by default.

artifacts/ExampleFlashSwap.json

Lines changed: 62 additions & 0 deletions
Large diffs are not rendered by default.

artifacts/ExampleOracleSimple.json

Lines changed: 165 additions & 0 deletions
Large diffs are not rendered by default.

artifacts/ExampleSlidingWindowOracle.json

Lines changed: 182 additions & 0 deletions
Large diffs are not rendered by default.

artifacts/ExampleSwapToPrice.json

Lines changed: 138 additions & 0 deletions
Large diffs are not rendered by default.

artifacts/FixedPoint.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"contractName": "FixedPoint",
3+
"abi": [],
4+
"bytecode": "0x60566023600b82828239805160001a607314601657fe5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212208eb14de0cf8af916cc7436de53331acce86838a410e5ce9694c6278f7a4d57ad64736f6c63430006060033",
5+
"deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212208eb14de0cf8af916cc7436de53331acce86838a410e5ce9694c6278f7a4d57ad64736f6c63430006060033",
6+
"linkReferences": {},
7+
"deployedLinkReferences": {}
8+
}

artifacts/IERC20.json

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

artifacts/IPancakeMigrator.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"contractName": "IPancakeMigrator",
3+
"abi": [
4+
{
5+
"inputs": [
6+
{
7+
"internalType": "address",
8+
"name": "token",
9+
"type": "address"
10+
},
11+
{
12+
"internalType": "uint256",
13+
"name": "amountTokenMin",
14+
"type": "uint256"
15+
},
16+
{
17+
"internalType": "uint256",
18+
"name": "amountETHMin",
19+
"type": "uint256"
20+
},
21+
{
22+
"internalType": "address",
23+
"name": "to",
24+
"type": "address"
25+
},
26+
{
27+
"internalType": "uint256",
28+
"name": "deadline",
29+
"type": "uint256"
30+
}
31+
],
32+
"name": "migrate",
33+
"outputs": [],
34+
"stateMutability": "nonpayable",
35+
"type": "function"
36+
}
37+
],
38+
"bytecode": "0x",
39+
"deployedBytecode": "0x",
40+
"linkReferences": {},
41+
"deployedLinkReferences": {}
42+
}

0 commit comments

Comments
 (0)