Skip to content

Commit d07b87f

Browse files
authored
Merge pull request #611 from VenusProtocol/feat/VPD-112
[VPD-112]: New WBNB market on BNB Chain Core pool
2 parents c6f602b + 2777617 commit d07b87f

13 files changed

+10952
-0
lines changed
Lines changed: 172 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,172 @@
1+
[
2+
{ "inputs": [], "stateMutability": "nonpayable", "type": "constructor" },
3+
{
4+
"inputs": [
5+
{ "internalType": "address", "name": "sender", "type": "address" },
6+
{ "internalType": "address", "name": "calledContract", "type": "address" },
7+
{ "internalType": "string", "name": "methodSignature", "type": "string" }
8+
],
9+
"name": "Unauthorized",
10+
"type": "error"
11+
},
12+
{
13+
"anonymous": false,
14+
"inputs": [{ "indexed": false, "internalType": "uint8", "name": "version", "type": "uint8" }],
15+
"name": "Initialized",
16+
"type": "event"
17+
},
18+
{
19+
"anonymous": false,
20+
"inputs": [
21+
{ "indexed": true, "internalType": "string", "name": "asset", "type": "string" },
22+
{ "indexed": false, "internalType": "uint256", "name": "maxStalePeriod", "type": "uint256" }
23+
],
24+
"name": "MaxStalePeriodAdded",
25+
"type": "event"
26+
},
27+
{
28+
"anonymous": false,
29+
"inputs": [
30+
{ "indexed": false, "internalType": "address", "name": "oldAccessControlManager", "type": "address" },
31+
{ "indexed": false, "internalType": "address", "name": "newAccessControlManager", "type": "address" }
32+
],
33+
"name": "NewAccessControlManager",
34+
"type": "event"
35+
},
36+
{
37+
"anonymous": false,
38+
"inputs": [
39+
{ "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" },
40+
{ "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" }
41+
],
42+
"name": "OwnershipTransferStarted",
43+
"type": "event"
44+
},
45+
{
46+
"anonymous": false,
47+
"inputs": [
48+
{ "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" },
49+
{ "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" }
50+
],
51+
"name": "OwnershipTransferred",
52+
"type": "event"
53+
},
54+
{
55+
"anonymous": false,
56+
"inputs": [
57+
{ "indexed": true, "internalType": "string", "name": "symbol", "type": "string" },
58+
{ "indexed": false, "internalType": "string", "name": "overriddenSymbol", "type": "string" }
59+
],
60+
"name": "SymbolOverridden",
61+
"type": "event"
62+
},
63+
{
64+
"inputs": [],
65+
"name": "BNB_ADDR",
66+
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
67+
"stateMutability": "view",
68+
"type": "function"
69+
},
70+
{ "inputs": [], "name": "acceptOwnership", "outputs": [], "stateMutability": "nonpayable", "type": "function" },
71+
{
72+
"inputs": [],
73+
"name": "accessControlManager",
74+
"outputs": [{ "internalType": "contract IAccessControlManagerV8", "name": "", "type": "address" }],
75+
"stateMutability": "view",
76+
"type": "function"
77+
},
78+
{
79+
"inputs": [],
80+
"name": "getFeedRegistryAddress",
81+
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
82+
"stateMutability": "view",
83+
"type": "function"
84+
},
85+
{
86+
"inputs": [{ "internalType": "address", "name": "asset", "type": "address" }],
87+
"name": "getPrice",
88+
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
89+
"stateMutability": "view",
90+
"type": "function"
91+
},
92+
{
93+
"inputs": [
94+
{ "internalType": "address", "name": "_sidRegistryAddress", "type": "address" },
95+
{ "internalType": "address", "name": "_accessControlManager", "type": "address" }
96+
],
97+
"name": "initialize",
98+
"outputs": [],
99+
"stateMutability": "nonpayable",
100+
"type": "function"
101+
},
102+
{
103+
"inputs": [{ "internalType": "string", "name": "", "type": "string" }],
104+
"name": "maxStalePeriod",
105+
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
106+
"stateMutability": "view",
107+
"type": "function"
108+
},
109+
{
110+
"inputs": [],
111+
"name": "owner",
112+
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
113+
"stateMutability": "view",
114+
"type": "function"
115+
},
116+
{
117+
"inputs": [],
118+
"name": "pendingOwner",
119+
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
120+
"stateMutability": "view",
121+
"type": "function"
122+
},
123+
{ "inputs": [], "name": "renounceOwnership", "outputs": [], "stateMutability": "nonpayable", "type": "function" },
124+
{
125+
"inputs": [{ "internalType": "address", "name": "accessControlManager_", "type": "address" }],
126+
"name": "setAccessControlManager",
127+
"outputs": [],
128+
"stateMutability": "nonpayable",
129+
"type": "function"
130+
},
131+
{
132+
"inputs": [
133+
{ "internalType": "string", "name": "symbol", "type": "string" },
134+
{ "internalType": "uint256", "name": "_maxStalePeriod", "type": "uint256" }
135+
],
136+
"name": "setMaxStalePeriod",
137+
"outputs": [],
138+
"stateMutability": "nonpayable",
139+
"type": "function"
140+
},
141+
{
142+
"inputs": [
143+
{ "internalType": "string", "name": "symbol", "type": "string" },
144+
{ "internalType": "string", "name": "overrideSymbol", "type": "string" }
145+
],
146+
"name": "setSymbolOverride",
147+
"outputs": [],
148+
"stateMutability": "nonpayable",
149+
"type": "function"
150+
},
151+
{
152+
"inputs": [],
153+
"name": "sidRegistryAddress",
154+
"outputs": [{ "internalType": "address", "name": "", "type": "address" }],
155+
"stateMutability": "view",
156+
"type": "function"
157+
},
158+
{
159+
"inputs": [{ "internalType": "string", "name": "", "type": "string" }],
160+
"name": "symbols",
161+
"outputs": [{ "internalType": "string", "name": "", "type": "string" }],
162+
"stateMutability": "view",
163+
"type": "function"
164+
},
165+
{
166+
"inputs": [{ "internalType": "address", "name": "newOwner", "type": "address" }],
167+
"name": "transferOwnership",
168+
"outputs": [],
169+
"stateMutability": "nonpayable",
170+
"type": "function"
171+
}
172+
]

0 commit comments

Comments
 (0)