Skip to content

Commit 87657e0

Browse files
committed
feat: add USDF market
1 parent 95a8ca8 commit 87657e0

12 files changed

+7939
-0
lines changed

simulations/vip-521/abi/LegacyPoolVToken.json

Lines changed: 1747 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 155 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
1+
[
2+
{
3+
"inputs": [
4+
{ "internalType": "string", "name": "name_", "type": "string" },
5+
{ "internalType": "string", "name": "symbol_", "type": "string" },
6+
{ "internalType": "uint8", "name": "decimals_", "type": "uint8" }
7+
],
8+
"stateMutability": "nonpayable",
9+
"type": "constructor"
10+
},
11+
{
12+
"anonymous": false,
13+
"inputs": [
14+
{ "indexed": true, "internalType": "address", "name": "owner", "type": "address" },
15+
{ "indexed": true, "internalType": "address", "name": "spender", "type": "address" },
16+
{ "indexed": false, "internalType": "uint256", "name": "value", "type": "uint256" }
17+
],
18+
"name": "Approval",
19+
"type": "event"
20+
},
21+
{
22+
"anonymous": false,
23+
"inputs": [
24+
{ "indexed": true, "internalType": "address", "name": "from", "type": "address" },
25+
{ "indexed": true, "internalType": "address", "name": "to", "type": "address" },
26+
{ "indexed": false, "internalType": "uint256", "name": "value", "type": "uint256" }
27+
],
28+
"name": "Transfer",
29+
"type": "event"
30+
},
31+
{
32+
"inputs": [
33+
{ "internalType": "address", "name": "owner", "type": "address" },
34+
{ "internalType": "address", "name": "spender", "type": "address" }
35+
],
36+
"name": "allowance",
37+
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
38+
"stateMutability": "view",
39+
"type": "function"
40+
},
41+
{
42+
"inputs": [
43+
{ "internalType": "address", "name": "spender", "type": "address" },
44+
{ "internalType": "uint256", "name": "amount", "type": "uint256" }
45+
],
46+
"name": "approve",
47+
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
48+
"stateMutability": "nonpayable",
49+
"type": "function"
50+
},
51+
{
52+
"inputs": [{ "internalType": "address", "name": "account", "type": "address" }],
53+
"name": "balanceOf",
54+
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
55+
"stateMutability": "view",
56+
"type": "function"
57+
},
58+
{
59+
"inputs": [],
60+
"name": "decimals",
61+
"outputs": [{ "internalType": "uint8", "name": "", "type": "uint8" }],
62+
"stateMutability": "view",
63+
"type": "function"
64+
},
65+
{
66+
"inputs": [
67+
{ "internalType": "address", "name": "spender", "type": "address" },
68+
{ "internalType": "uint256", "name": "subtractedValue", "type": "uint256" }
69+
],
70+
"name": "decreaseAllowance",
71+
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
72+
"stateMutability": "nonpayable",
73+
"type": "function"
74+
},
75+
{
76+
"inputs": [{ "internalType": "uint256", "name": "amount", "type": "uint256" }],
77+
"name": "faucet",
78+
"outputs": [],
79+
"stateMutability": "nonpayable",
80+
"type": "function"
81+
},
82+
{
83+
"inputs": [
84+
{ "internalType": "address", "name": "spender", "type": "address" },
85+
{ "internalType": "uint256", "name": "addedValue", "type": "uint256" }
86+
],
87+
"name": "increaseAllowance",
88+
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
89+
"stateMutability": "nonpayable",
90+
"type": "function"
91+
},
92+
{
93+
"inputs": [],
94+
"name": "name",
95+
"outputs": [{ "internalType": "string", "name": "", "type": "string" }],
96+
"stateMutability": "view",
97+
"type": "function"
98+
},
99+
{
100+
"inputs": [],
101+
"name": "symbol",
102+
"outputs": [{ "internalType": "string", "name": "", "type": "string" }],
103+
"stateMutability": "view",
104+
"type": "function"
105+
},
106+
{
107+
"inputs": [],
108+
"name": "totalSupply",
109+
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
110+
"stateMutability": "view",
111+
"type": "function"
112+
},
113+
{
114+
"inputs": [
115+
{ "internalType": "address", "name": "to", "type": "address" },
116+
{ "internalType": "uint256", "name": "amount", "type": "uint256" }
117+
],
118+
"name": "transfer",
119+
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
120+
"stateMutability": "nonpayable",
121+
"type": "function"
122+
},
123+
{
124+
"inputs": [
125+
{ "internalType": "address", "name": "from", "type": "address" },
126+
{ "internalType": "address", "name": "to", "type": "address" },
127+
{ "internalType": "uint256", "name": "amount", "type": "uint256" }
128+
],
129+
"name": "transferFrom",
130+
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
131+
"stateMutability": "nonpayable",
132+
"type": "function"
133+
},
134+
{
135+
"constant": false,
136+
"inputs": [
137+
{ "internalType": "address", "name": "_owner", "type": "address" },
138+
{ "internalType": "uint256", "name": "value", "type": "uint256" }
139+
],
140+
"name": "allocateTo",
141+
"outputs": [],
142+
"payable": false,
143+
"stateMutability": "nonpayable",
144+
"type": "function"
145+
},
146+
{
147+
"constant": false,
148+
"inputs": [],
149+
"name": "deposit",
150+
"outputs": [],
151+
"payable": true,
152+
"stateMutability": "payable",
153+
"type": "function"
154+
}
155+
]

0 commit comments

Comments
 (0)