@pufferfinance/puffer-sdk 1.26.2 → 1.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/contracts/abis/mainnet/GaugeRegistry.cjs +2 -0
- package/dist/contracts/abis/mainnet/GaugeRegistry.cjs.map +1 -0
- package/dist/contracts/abis/mainnet/GaugeRegistry.d.ts +156 -0
- package/dist/contracts/abis/mainnet/GaugeRegistry.js +114 -0
- package/dist/contracts/abis/mainnet/GaugeRegistry.js.map +1 -0
- package/dist/contracts/addresses.cjs +1 -1
- package/dist/contracts/addresses.cjs.map +1 -1
- package/dist/contracts/addresses.d.ts +19 -0
- package/dist/contracts/addresses.js +9 -4
- package/dist/contracts/addresses.js.map +1 -1
- package/dist/contracts/handlers/gauge-registry-handler.cjs +2 -0
- package/dist/contracts/handlers/gauge-registry-handler.cjs.map +1 -0
- package/dist/contracts/handlers/gauge-registry-handler.d.ts +14674 -0
- package/dist/contracts/handlers/gauge-registry-handler.js +171 -0
- package/dist/contracts/handlers/gauge-registry-handler.js.map +1 -0
- package/dist/utils/version.cjs +1 -1
- package/dist/utils/version.js +1 -1
- package/package.json +1 -1
- package/dist/contracts/abis/mainnet/PufferVaultV2.cjs +0 -2
- package/dist/contracts/abis/mainnet/PufferVaultV2.cjs.map +0 -1
- package/dist/contracts/abis/mainnet/PufferVaultV2.d.ts +0 -185
- package/dist/contracts/abis/mainnet/PufferVaultV2.js +0 -252
- package/dist/contracts/abis/mainnet/PufferVaultV2.js.map +0 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=[{type:"function",name:"acceptOwnership",inputs:[],outputs:[],stateMutability:"nonpayable"},{type:"function",name:"activateGauge",inputs:[{name:"gauge",type:"address",internalType:"address"}],outputs:[],stateMutability:"nonpayable"},{type:"function",name:"deactivateGauge",inputs:[{name:"gauge",type:"address",internalType:"address"}],outputs:[],stateMutability:"nonpayable"},{type:"function",name:"gaugeExists",inputs:[{name:"gauge",type:"address",internalType:"address"}],outputs:[{name:"",type:"bool",internalType:"bool"}],stateMutability:"view"},{type:"function",name:"getGauge",inputs:[{name:"gauge",type:"address",internalType:"address"}],outputs:[{name:"",type:"tuple",internalType:"struct GaugeRegistry.Gauge",components:[{name:"active",type:"bool",internalType:"bool"},{name:"created",type:"uint48",internalType:"uint48"},{name:"metadataURI",type:"string",internalType:"string"}]}],stateMutability:"view"},{type:"function",name:"getGaugeList",inputs:[],outputs:[{name:"",type:"address[]",internalType:"address[]"}],stateMutability:"view"},{type:"function",name:"isActive",inputs:[{name:"gauge",type:"address",internalType:"address"}],outputs:[{name:"",type:"bool",internalType:"bool"}],stateMutability:"view"},{type:"function",name:"owner",inputs:[],outputs:[{name:"",type:"address",internalType:"address"}],stateMutability:"view"},{type:"function",name:"pendingOwner",inputs:[],outputs:[{name:"",type:"address",internalType:"address"}],stateMutability:"view"},{type:"function",name:"registerGauge",inputs:[{name:"gauge",type:"address",internalType:"address"},{name:"metadataURI",type:"string",internalType:"string"}],outputs:[],stateMutability:"nonpayable"},{type:"function",name:"renounceOwnership",inputs:[],outputs:[],stateMutability:"nonpayable"},{type:"function",name:"transferOwnership",inputs:[{name:"newOwner",type:"address",internalType:"address"}],outputs:[],stateMutability:"nonpayable"},{type:"function",name:"updateGaugeMetadata",inputs:[{name:"gauge",type:"address",internalType:"address"},{name:"metadataURI",type:"string",internalType:"string"}],outputs:[],stateMutability:"nonpayable"}];exports.GaugeRegistry=e;
|
|
2
|
+
//# sourceMappingURL=GaugeRegistry.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GaugeRegistry.cjs","sources":["../../../../lib/contracts/abis/mainnet/GaugeRegistry.ts"],"sourcesContent":["export const GaugeRegistry = <const>[\n {\n type: 'function',\n name: 'acceptOwnership',\n inputs: [],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'activateGauge',\n inputs: [{ name: 'gauge', type: 'address', internalType: 'address' }],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'deactivateGauge',\n inputs: [{ name: 'gauge', type: 'address', internalType: 'address' }],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'gaugeExists',\n inputs: [{ name: 'gauge', type: 'address', internalType: 'address' }],\n outputs: [{ name: '', type: 'bool', internalType: 'bool' }],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'getGauge',\n inputs: [{ name: 'gauge', type: 'address', internalType: 'address' }],\n outputs: [\n {\n name: '',\n type: 'tuple',\n internalType: 'struct GaugeRegistry.Gauge',\n components: [\n { name: 'active', type: 'bool', internalType: 'bool' },\n { name: 'created', type: 'uint48', internalType: 'uint48' },\n { name: 'metadataURI', type: 'string', internalType: 'string' },\n ],\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'getGaugeList',\n inputs: [],\n outputs: [{ name: '', type: 'address[]', internalType: 'address[]' }],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'isActive',\n inputs: [{ name: 'gauge', type: 'address', internalType: 'address' }],\n outputs: [{ name: '', type: 'bool', internalType: 'bool' }],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'owner',\n inputs: [],\n outputs: [{ name: '', type: 'address', internalType: 'address' }],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'pendingOwner',\n inputs: [],\n outputs: [{ name: '', type: 'address', internalType: 'address' }],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'registerGauge',\n inputs: [\n { name: 'gauge', type: 'address', internalType: 'address' },\n { name: 'metadataURI', type: 'string', internalType: 'string' },\n ],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'renounceOwnership',\n inputs: [],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'transferOwnership',\n inputs: [{ name: 'newOwner', type: 'address', internalType: 'address' }],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'updateGaugeMetadata',\n inputs: [\n { name: 'gauge', type: 'address', internalType: 'address' },\n { name: 'metadataURI', type: 'string', internalType: 'string' },\n ],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n];\n"],"names":["GaugeRegistry"],"mappings":"gFAAO,MAAMA,EAAuB,CAClC,CACE,KAAM,WACN,KAAM,kBACN,OAAQ,CAAC,EACT,QAAS,CAAC,EACV,gBAAiB,YACnB,EACA,CACE,KAAM,WACN,KAAM,gBACN,OAAQ,CAAC,CAAE,KAAM,QAAS,KAAM,UAAW,aAAc,UAAW,EACpE,QAAS,CAAC,EACV,gBAAiB,YACnB,EACA,CACE,KAAM,WACN,KAAM,kBACN,OAAQ,CAAC,CAAE,KAAM,QAAS,KAAM,UAAW,aAAc,UAAW,EACpE,QAAS,CAAC,EACV,gBAAiB,YACnB,EACA,CACE,KAAM,WACN,KAAM,cACN,OAAQ,CAAC,CAAE,KAAM,QAAS,KAAM,UAAW,aAAc,UAAW,EACpE,QAAS,CAAC,CAAE,KAAM,GAAI,KAAM,OAAQ,aAAc,OAAQ,EAC1D,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,WACN,OAAQ,CAAC,CAAE,KAAM,QAAS,KAAM,UAAW,aAAc,UAAW,EACpE,QAAS,CACP,CACE,KAAM,GACN,KAAM,QACN,aAAc,6BACd,WAAY,CACV,CAAE,KAAM,SAAU,KAAM,OAAQ,aAAc,MAAO,EACrD,CAAE,KAAM,UAAW,KAAM,SAAU,aAAc,QAAS,EAC1D,CAAE,KAAM,cAAe,KAAM,SAAU,aAAc,QAAS,CAAA,CAChE,CAEJ,EACA,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,eACN,OAAQ,CAAC,EACT,QAAS,CAAC,CAAE,KAAM,GAAI,KAAM,YAAa,aAAc,YAAa,EACpE,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,WACN,OAAQ,CAAC,CAAE,KAAM,QAAS,KAAM,UAAW,aAAc,UAAW,EACpE,QAAS,CAAC,CAAE,KAAM,GAAI,KAAM,OAAQ,aAAc,OAAQ,EAC1D,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,QACN,OAAQ,CAAC,EACT,QAAS,CAAC,CAAE,KAAM,GAAI,KAAM,UAAW,aAAc,UAAW,EAChE,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,eACN,OAAQ,CAAC,EACT,QAAS,CAAC,CAAE,KAAM,GAAI,KAAM,UAAW,aAAc,UAAW,EAChE,gBAAiB,MACnB,EACA,CACE,KAAM,WACN,KAAM,gBACN,OAAQ,CACN,CAAE,KAAM,QAAS,KAAM,UAAW,aAAc,SAAU,EAC1D,CAAE,KAAM,cAAe,KAAM,SAAU,aAAc,QAAS,CAChE,EACA,QAAS,CAAC,EACV,gBAAiB,YACnB,EACA,CACE,KAAM,WACN,KAAM,oBACN,OAAQ,CAAC,EACT,QAAS,CAAC,EACV,gBAAiB,YACnB,EACA,CACE,KAAM,WACN,KAAM,oBACN,OAAQ,CAAC,CAAE,KAAM,WAAY,KAAM,UAAW,aAAc,UAAW,EACvE,QAAS,CAAC,EACV,gBAAiB,YACnB,EACA,CACE,KAAM,WACN,KAAM,sBACN,OAAQ,CACN,CAAE,KAAM,QAAS,KAAM,UAAW,aAAc,SAAU,EAC1D,CAAE,KAAM,cAAe,KAAM,SAAU,aAAc,QAAS,CAChE,EACA,QAAS,CAAC,EACV,gBAAiB,YAAA,CAErB"}
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
export declare const GaugeRegistry: readonly [{
|
|
2
|
+
readonly type: "function";
|
|
3
|
+
readonly name: "acceptOwnership";
|
|
4
|
+
readonly inputs: readonly [];
|
|
5
|
+
readonly outputs: readonly [];
|
|
6
|
+
readonly stateMutability: "nonpayable";
|
|
7
|
+
}, {
|
|
8
|
+
readonly type: "function";
|
|
9
|
+
readonly name: "activateGauge";
|
|
10
|
+
readonly inputs: readonly [{
|
|
11
|
+
readonly name: "gauge";
|
|
12
|
+
readonly type: "address";
|
|
13
|
+
readonly internalType: "address";
|
|
14
|
+
}];
|
|
15
|
+
readonly outputs: readonly [];
|
|
16
|
+
readonly stateMutability: "nonpayable";
|
|
17
|
+
}, {
|
|
18
|
+
readonly type: "function";
|
|
19
|
+
readonly name: "deactivateGauge";
|
|
20
|
+
readonly inputs: readonly [{
|
|
21
|
+
readonly name: "gauge";
|
|
22
|
+
readonly type: "address";
|
|
23
|
+
readonly internalType: "address";
|
|
24
|
+
}];
|
|
25
|
+
readonly outputs: readonly [];
|
|
26
|
+
readonly stateMutability: "nonpayable";
|
|
27
|
+
}, {
|
|
28
|
+
readonly type: "function";
|
|
29
|
+
readonly name: "gaugeExists";
|
|
30
|
+
readonly inputs: readonly [{
|
|
31
|
+
readonly name: "gauge";
|
|
32
|
+
readonly type: "address";
|
|
33
|
+
readonly internalType: "address";
|
|
34
|
+
}];
|
|
35
|
+
readonly outputs: readonly [{
|
|
36
|
+
readonly name: "";
|
|
37
|
+
readonly type: "bool";
|
|
38
|
+
readonly internalType: "bool";
|
|
39
|
+
}];
|
|
40
|
+
readonly stateMutability: "view";
|
|
41
|
+
}, {
|
|
42
|
+
readonly type: "function";
|
|
43
|
+
readonly name: "getGauge";
|
|
44
|
+
readonly inputs: readonly [{
|
|
45
|
+
readonly name: "gauge";
|
|
46
|
+
readonly type: "address";
|
|
47
|
+
readonly internalType: "address";
|
|
48
|
+
}];
|
|
49
|
+
readonly outputs: readonly [{
|
|
50
|
+
readonly name: "";
|
|
51
|
+
readonly type: "tuple";
|
|
52
|
+
readonly internalType: "struct GaugeRegistry.Gauge";
|
|
53
|
+
readonly components: readonly [{
|
|
54
|
+
readonly name: "active";
|
|
55
|
+
readonly type: "bool";
|
|
56
|
+
readonly internalType: "bool";
|
|
57
|
+
}, {
|
|
58
|
+
readonly name: "created";
|
|
59
|
+
readonly type: "uint48";
|
|
60
|
+
readonly internalType: "uint48";
|
|
61
|
+
}, {
|
|
62
|
+
readonly name: "metadataURI";
|
|
63
|
+
readonly type: "string";
|
|
64
|
+
readonly internalType: "string";
|
|
65
|
+
}];
|
|
66
|
+
}];
|
|
67
|
+
readonly stateMutability: "view";
|
|
68
|
+
}, {
|
|
69
|
+
readonly type: "function";
|
|
70
|
+
readonly name: "getGaugeList";
|
|
71
|
+
readonly inputs: readonly [];
|
|
72
|
+
readonly outputs: readonly [{
|
|
73
|
+
readonly name: "";
|
|
74
|
+
readonly type: "address[]";
|
|
75
|
+
readonly internalType: "address[]";
|
|
76
|
+
}];
|
|
77
|
+
readonly stateMutability: "view";
|
|
78
|
+
}, {
|
|
79
|
+
readonly type: "function";
|
|
80
|
+
readonly name: "isActive";
|
|
81
|
+
readonly inputs: readonly [{
|
|
82
|
+
readonly name: "gauge";
|
|
83
|
+
readonly type: "address";
|
|
84
|
+
readonly internalType: "address";
|
|
85
|
+
}];
|
|
86
|
+
readonly outputs: readonly [{
|
|
87
|
+
readonly name: "";
|
|
88
|
+
readonly type: "bool";
|
|
89
|
+
readonly internalType: "bool";
|
|
90
|
+
}];
|
|
91
|
+
readonly stateMutability: "view";
|
|
92
|
+
}, {
|
|
93
|
+
readonly type: "function";
|
|
94
|
+
readonly name: "owner";
|
|
95
|
+
readonly inputs: readonly [];
|
|
96
|
+
readonly outputs: readonly [{
|
|
97
|
+
readonly name: "";
|
|
98
|
+
readonly type: "address";
|
|
99
|
+
readonly internalType: "address";
|
|
100
|
+
}];
|
|
101
|
+
readonly stateMutability: "view";
|
|
102
|
+
}, {
|
|
103
|
+
readonly type: "function";
|
|
104
|
+
readonly name: "pendingOwner";
|
|
105
|
+
readonly inputs: readonly [];
|
|
106
|
+
readonly outputs: readonly [{
|
|
107
|
+
readonly name: "";
|
|
108
|
+
readonly type: "address";
|
|
109
|
+
readonly internalType: "address";
|
|
110
|
+
}];
|
|
111
|
+
readonly stateMutability: "view";
|
|
112
|
+
}, {
|
|
113
|
+
readonly type: "function";
|
|
114
|
+
readonly name: "registerGauge";
|
|
115
|
+
readonly inputs: readonly [{
|
|
116
|
+
readonly name: "gauge";
|
|
117
|
+
readonly type: "address";
|
|
118
|
+
readonly internalType: "address";
|
|
119
|
+
}, {
|
|
120
|
+
readonly name: "metadataURI";
|
|
121
|
+
readonly type: "string";
|
|
122
|
+
readonly internalType: "string";
|
|
123
|
+
}];
|
|
124
|
+
readonly outputs: readonly [];
|
|
125
|
+
readonly stateMutability: "nonpayable";
|
|
126
|
+
}, {
|
|
127
|
+
readonly type: "function";
|
|
128
|
+
readonly name: "renounceOwnership";
|
|
129
|
+
readonly inputs: readonly [];
|
|
130
|
+
readonly outputs: readonly [];
|
|
131
|
+
readonly stateMutability: "nonpayable";
|
|
132
|
+
}, {
|
|
133
|
+
readonly type: "function";
|
|
134
|
+
readonly name: "transferOwnership";
|
|
135
|
+
readonly inputs: readonly [{
|
|
136
|
+
readonly name: "newOwner";
|
|
137
|
+
readonly type: "address";
|
|
138
|
+
readonly internalType: "address";
|
|
139
|
+
}];
|
|
140
|
+
readonly outputs: readonly [];
|
|
141
|
+
readonly stateMutability: "nonpayable";
|
|
142
|
+
}, {
|
|
143
|
+
readonly type: "function";
|
|
144
|
+
readonly name: "updateGaugeMetadata";
|
|
145
|
+
readonly inputs: readonly [{
|
|
146
|
+
readonly name: "gauge";
|
|
147
|
+
readonly type: "address";
|
|
148
|
+
readonly internalType: "address";
|
|
149
|
+
}, {
|
|
150
|
+
readonly name: "metadataURI";
|
|
151
|
+
readonly type: "string";
|
|
152
|
+
readonly internalType: "string";
|
|
153
|
+
}];
|
|
154
|
+
readonly outputs: readonly [];
|
|
155
|
+
readonly stateMutability: "nonpayable";
|
|
156
|
+
}];
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
const e = [
|
|
2
|
+
{
|
|
3
|
+
type: "function",
|
|
4
|
+
name: "acceptOwnership",
|
|
5
|
+
inputs: [],
|
|
6
|
+
outputs: [],
|
|
7
|
+
stateMutability: "nonpayable"
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
type: "function",
|
|
11
|
+
name: "activateGauge",
|
|
12
|
+
inputs: [{ name: "gauge", type: "address", internalType: "address" }],
|
|
13
|
+
outputs: [],
|
|
14
|
+
stateMutability: "nonpayable"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
type: "function",
|
|
18
|
+
name: "deactivateGauge",
|
|
19
|
+
inputs: [{ name: "gauge", type: "address", internalType: "address" }],
|
|
20
|
+
outputs: [],
|
|
21
|
+
stateMutability: "nonpayable"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
type: "function",
|
|
25
|
+
name: "gaugeExists",
|
|
26
|
+
inputs: [{ name: "gauge", type: "address", internalType: "address" }],
|
|
27
|
+
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
28
|
+
stateMutability: "view"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
type: "function",
|
|
32
|
+
name: "getGauge",
|
|
33
|
+
inputs: [{ name: "gauge", type: "address", internalType: "address" }],
|
|
34
|
+
outputs: [
|
|
35
|
+
{
|
|
36
|
+
name: "",
|
|
37
|
+
type: "tuple",
|
|
38
|
+
internalType: "struct GaugeRegistry.Gauge",
|
|
39
|
+
components: [
|
|
40
|
+
{ name: "active", type: "bool", internalType: "bool" },
|
|
41
|
+
{ name: "created", type: "uint48", internalType: "uint48" },
|
|
42
|
+
{ name: "metadataURI", type: "string", internalType: "string" }
|
|
43
|
+
]
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
stateMutability: "view"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
type: "function",
|
|
50
|
+
name: "getGaugeList",
|
|
51
|
+
inputs: [],
|
|
52
|
+
outputs: [{ name: "", type: "address[]", internalType: "address[]" }],
|
|
53
|
+
stateMutability: "view"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
type: "function",
|
|
57
|
+
name: "isActive",
|
|
58
|
+
inputs: [{ name: "gauge", type: "address", internalType: "address" }],
|
|
59
|
+
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
60
|
+
stateMutability: "view"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
type: "function",
|
|
64
|
+
name: "owner",
|
|
65
|
+
inputs: [],
|
|
66
|
+
outputs: [{ name: "", type: "address", internalType: "address" }],
|
|
67
|
+
stateMutability: "view"
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
type: "function",
|
|
71
|
+
name: "pendingOwner",
|
|
72
|
+
inputs: [],
|
|
73
|
+
outputs: [{ name: "", type: "address", internalType: "address" }],
|
|
74
|
+
stateMutability: "view"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
type: "function",
|
|
78
|
+
name: "registerGauge",
|
|
79
|
+
inputs: [
|
|
80
|
+
{ name: "gauge", type: "address", internalType: "address" },
|
|
81
|
+
{ name: "metadataURI", type: "string", internalType: "string" }
|
|
82
|
+
],
|
|
83
|
+
outputs: [],
|
|
84
|
+
stateMutability: "nonpayable"
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
type: "function",
|
|
88
|
+
name: "renounceOwnership",
|
|
89
|
+
inputs: [],
|
|
90
|
+
outputs: [],
|
|
91
|
+
stateMutability: "nonpayable"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
type: "function",
|
|
95
|
+
name: "transferOwnership",
|
|
96
|
+
inputs: [{ name: "newOwner", type: "address", internalType: "address" }],
|
|
97
|
+
outputs: [],
|
|
98
|
+
stateMutability: "nonpayable"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
type: "function",
|
|
102
|
+
name: "updateGaugeMetadata",
|
|
103
|
+
inputs: [
|
|
104
|
+
{ name: "gauge", type: "address", internalType: "address" },
|
|
105
|
+
{ name: "metadataURI", type: "string", internalType: "string" }
|
|
106
|
+
],
|
|
107
|
+
outputs: [],
|
|
108
|
+
stateMutability: "nonpayable"
|
|
109
|
+
}
|
|
110
|
+
];
|
|
111
|
+
export {
|
|
112
|
+
e as GaugeRegistry
|
|
113
|
+
};
|
|
114
|
+
//# sourceMappingURL=GaugeRegistry.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GaugeRegistry.js","sources":["../../../../lib/contracts/abis/mainnet/GaugeRegistry.ts"],"sourcesContent":["export const GaugeRegistry = <const>[\n {\n type: 'function',\n name: 'acceptOwnership',\n inputs: [],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'activateGauge',\n inputs: [{ name: 'gauge', type: 'address', internalType: 'address' }],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'deactivateGauge',\n inputs: [{ name: 'gauge', type: 'address', internalType: 'address' }],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'gaugeExists',\n inputs: [{ name: 'gauge', type: 'address', internalType: 'address' }],\n outputs: [{ name: '', type: 'bool', internalType: 'bool' }],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'getGauge',\n inputs: [{ name: 'gauge', type: 'address', internalType: 'address' }],\n outputs: [\n {\n name: '',\n type: 'tuple',\n internalType: 'struct GaugeRegistry.Gauge',\n components: [\n { name: 'active', type: 'bool', internalType: 'bool' },\n { name: 'created', type: 'uint48', internalType: 'uint48' },\n { name: 'metadataURI', type: 'string', internalType: 'string' },\n ],\n },\n ],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'getGaugeList',\n inputs: [],\n outputs: [{ name: '', type: 'address[]', internalType: 'address[]' }],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'isActive',\n inputs: [{ name: 'gauge', type: 'address', internalType: 'address' }],\n outputs: [{ name: '', type: 'bool', internalType: 'bool' }],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'owner',\n inputs: [],\n outputs: [{ name: '', type: 'address', internalType: 'address' }],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'pendingOwner',\n inputs: [],\n outputs: [{ name: '', type: 'address', internalType: 'address' }],\n stateMutability: 'view',\n },\n {\n type: 'function',\n name: 'registerGauge',\n inputs: [\n { name: 'gauge', type: 'address', internalType: 'address' },\n { name: 'metadataURI', type: 'string', internalType: 'string' },\n ],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'renounceOwnership',\n inputs: [],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'transferOwnership',\n inputs: [{ name: 'newOwner', type: 'address', internalType: 'address' }],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n {\n type: 'function',\n name: 'updateGaugeMetadata',\n inputs: [\n { name: 'gauge', type: 'address', internalType: 'address' },\n { name: 'metadataURI', type: 'string', internalType: 'string' },\n ],\n outputs: [],\n stateMutability: 'nonpayable',\n },\n];\n"],"names":["GaugeRegistry"],"mappings":"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"}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../constants-CxSgz27h.cjs"),a={[e.Chain.Mainnet]:{PufferVault:"0xD9A442856C234a39a81a089C06451EBAa4306a72",PufferDepositor:"0x4aa799c5dfc01ee7d790e3bf1a7c2257ce1dceff",PufferL2Depositor:"0x3436E0B85cd929929F5802e792CFE282166E0259",PufLocker:"0x48e8dE138C246c14248C94d2D616a2F9eb4590D2",L1RewardManager:"0x157788cc028Ac6405bD406f2D1e0A8A22b3cf17b",L2RewardManager:"0x0000000000000000000000000000000000000000",PufferWithdrawalManager:"0xDdA0483184E75a5579ef9635ED14BacCf9d50283",NucleusAtomicQueue:"0x228c44bb4885c6633f4b6c83f14622f37d5112e5",CarrotStaker:"0x99c599227c65132822f0290d9e5b4b0430d6c0d6",Distributor:"0x3Ef3D8bA38EBe18DB133cEc108f4D14CE00Dd9Ae",ValidatorTicket:"0x7D26AD6F6BA9D6bA1de0218Ae5e20CD3a273a55A",PufferOracleV2:"0x0BE2aE0edbeBb517541DF217EF0074FC9a9e994f",PufferProtocol:"0xf7b6B32492c2e13799D921E84202450131bd238B",GuardianModule:"0x628b183F248a142A598AA2dcCCD6f7E480a7CcF2"},[e.Chain.Holesky]:{PufferVault:"0x9196830bB4c05504E0A8475A0aD566AceEB6BeC9",PufferDepositor:"0x824AC05aeb86A0aD770b8acDe0906d2d4a6c4A8c",PufferL2Depositor:"0x0af6998e4828ad8ef8f79a9288d0a861890f791d",PufLocker:"0xa58983ad0899a452b7420bc57228e329d7ba92b6",L1RewardManager:"0x10f970bcb84B82B82a65eBCbF45F26dD26D69F12",L2RewardManager:"0x58C046794f69A8830b0BE737022a45b4acd01dE5",PufferWithdrawalManager:"0x5A3E1069B66800c0ecbc91bd81b1AE4D1804DBc4",ValidatorTicket:"0xB028194785178a94Fe608994A4d5AD84c285A640",PufferOracleV2:"0x8e043ed3f06720615685d4978770cd5c8fe90fe3",PufferProtocol:"0xE00c79408B9De5BaD2FDEbB1688997a68eC988CD",GuardianModule:"0x0910310130d1c062def8b807528bdac80203bc66"},[e.Chain.Base]:{L2RewardManager:"0xF9Dd335bF363b2E4ecFe3c94A86EBD7Dd3Dcf0e7"}};exports.CONTRACT_ADDRESSES=a;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("../constants-CxSgz27h.cjs"),a={[e.Chain.Mainnet]:{PufferVault:"0xD9A442856C234a39a81a089C06451EBAa4306a72",PufferDepositor:"0x4aa799c5dfc01ee7d790e3bf1a7c2257ce1dceff",PufferL2Depositor:"0x3436E0B85cd929929F5802e792CFE282166E0259",PufLocker:"0x48e8dE138C246c14248C94d2D616a2F9eb4590D2",L1RewardManager:"0x157788cc028Ac6405bD406f2D1e0A8A22b3cf17b",L2RewardManager:"0x0000000000000000000000000000000000000000",PufferWithdrawalManager:"0xDdA0483184E75a5579ef9635ED14BacCf9d50283",NucleusAtomicQueue:"0x228c44bb4885c6633f4b6c83f14622f37d5112e5",CarrotStaker:"0x99c599227c65132822f0290d9e5b4b0430d6c0d6",Distributor:"0x3Ef3D8bA38EBe18DB133cEc108f4D14CE00Dd9Ae",ValidatorTicket:"0x7D26AD6F6BA9D6bA1de0218Ae5e20CD3a273a55A",PufferOracleV2:"0x0BE2aE0edbeBb517541DF217EF0074FC9a9e994f",PufferProtocol:"0xf7b6B32492c2e13799D921E84202450131bd238B",GuardianModule:"0x628b183F248a142A598AA2dcCCD6f7E480a7CcF2",GaugeRegistry:"0x0000000000000000000000000000000000000000"},[e.Chain.Holesky]:{PufferVault:"0x9196830bB4c05504E0A8475A0aD566AceEB6BeC9",PufferDepositor:"0x824AC05aeb86A0aD770b8acDe0906d2d4a6c4A8c",PufferL2Depositor:"0x0af6998e4828ad8ef8f79a9288d0a861890f791d",PufLocker:"0xa58983ad0899a452b7420bc57228e329d7ba92b6",L1RewardManager:"0x10f970bcb84B82B82a65eBCbF45F26dD26D69F12",L2RewardManager:"0x58C046794f69A8830b0BE737022a45b4acd01dE5",PufferWithdrawalManager:"0x5A3E1069B66800c0ecbc91bd81b1AE4D1804DBc4",ValidatorTicket:"0xB028194785178a94Fe608994A4d5AD84c285A640",PufferOracleV2:"0x8e043ed3f06720615685d4978770cd5c8fe90fe3",PufferProtocol:"0xE00c79408B9De5BaD2FDEbB1688997a68eC988CD",GuardianModule:"0x0910310130d1c062def8b807528bdac80203bc66",GaugeRegistry:"0x0000000000000000000000000000000000000000"},[e.Chain.Sepolia]:{GaugeRegistry:"0x14b25b3a3C1e6032e7Fbf0309d1ef6881e9A8D7A"},[e.Chain.Base]:{L2RewardManager:"0xF9Dd335bF363b2E4ecFe3c94A86EBD7Dd3Dcf0e7"}};exports.CONTRACT_ADDRESSES=a;
|
|
2
2
|
//# sourceMappingURL=addresses.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"addresses.cjs","sources":["../../lib/contracts/addresses.ts"],"sourcesContent":["import { Chain } from '../chains/constants';\n\n// Source of truth:\n// https://github.com/PufferFinance/Deployments-and-ACL/tree/main/docs/deployments\nexport const CONTRACT_ADDRESSES = {\n // Casting to number so the consumer can use chain ids. Also not using\n // a generic type for the variable so the consumer knows which\n // contracts can be accessed.\n [Chain.Mainnet as number]: {\n PufferVault: '0xD9A442856C234a39a81a089C06451EBAa4306a72',\n PufferDepositor: '0x4aa799c5dfc01ee7d790e3bf1a7c2257ce1dceff',\n PufferL2Depositor: '0x3436E0B85cd929929F5802e792CFE282166E0259',\n PufLocker: '0x48e8dE138C246c14248C94d2D616a2F9eb4590D2',\n L1RewardManager: '0x157788cc028Ac6405bD406f2D1e0A8A22b3cf17b',\n // L2RewardManager is not deployed to mainnet but base.\n L2RewardManager: '0x0000000000000000000000000000000000000000',\n PufferWithdrawalManager: '0xDdA0483184E75a5579ef9635ED14BacCf9d50283',\n NucleusAtomicQueue: '0x228c44bb4885c6633f4b6c83f14622f37d5112e5',\n CarrotStaker: '0x99c599227c65132822f0290d9e5b4b0430d6c0d6',\n Distributor: '0x3Ef3D8bA38EBe18DB133cEc108f4D14CE00Dd9Ae',\n ValidatorTicket: '0x7D26AD6F6BA9D6bA1de0218Ae5e20CD3a273a55A',\n PufferOracleV2: '0x0BE2aE0edbeBb517541DF217EF0074FC9a9e994f',\n PufferProtocol: '0xf7b6B32492c2e13799D921E84202450131bd238B',\n GuardianModule: '0x628b183F248a142A598AA2dcCCD6f7E480a7CcF2',\n },\n [Chain.Holesky as number]: {\n PufferVault: '0x9196830bB4c05504E0A8475A0aD566AceEB6BeC9',\n PufferDepositor: '0x824AC05aeb86A0aD770b8acDe0906d2d4a6c4A8c',\n PufferL2Depositor: '0x0af6998e4828ad8ef8f79a9288d0a861890f791d',\n PufLocker: '0xa58983ad0899a452b7420bc57228e329d7ba92b6',\n L1RewardManager: '0x10f970bcb84B82B82a65eBCbF45F26dD26D69F12',\n L2RewardManager: '0x58C046794f69A8830b0BE737022a45b4acd01dE5',\n PufferWithdrawalManager: '0x5A3E1069B66800c0ecbc91bd81b1AE4D1804DBc4',\n ValidatorTicket: '0xB028194785178a94Fe608994A4d5AD84c285A640',\n PufferOracleV2: '0x8e043ed3f06720615685d4978770cd5c8fe90fe3',\n PufferProtocol: '0xE00c79408B9De5BaD2FDEbB1688997a68eC988CD',\n GuardianModule: '0x0910310130d1c062def8b807528bdac80203bc66',\n },\n [Chain.Base as number]: {\n L2RewardManager: '0xF9Dd335bF363b2E4ecFe3c94A86EBD7Dd3Dcf0e7',\n },\n};\n"],"names":["CONTRACT_ADDRESSES","Chain"],"mappings":"6HAIaA,EAAqB,CAIhC,CAACC,EAAAA,MAAM,OAAiB,EAAG,CACzB,YAAa,6CACb,gBAAiB,6CACjB,kBAAmB,6CACnB,UAAW,6CACX,gBAAiB,6CAEjB,gBAAiB,6CACjB,wBAAyB,6CACzB,mBAAoB,6CACpB,aAAc,6CACd,YAAa,6CACb,gBAAiB,6CACjB,eAAgB,6CAChB,eAAgB,6CAChB,eAAgB,
|
|
1
|
+
{"version":3,"file":"addresses.cjs","sources":["../../lib/contracts/addresses.ts"],"sourcesContent":["import { Chain } from '../chains/constants';\n\n// Source of truth:\n// https://github.com/PufferFinance/Deployments-and-ACL/tree/main/docs/deployments\nexport const CONTRACT_ADDRESSES = {\n // Casting to number so the consumer can use chain ids. Also not using\n // a generic type for the variable so the consumer knows which\n // contracts can be accessed.\n [Chain.Mainnet as number]: {\n PufferVault: '0xD9A442856C234a39a81a089C06451EBAa4306a72',\n PufferDepositor: '0x4aa799c5dfc01ee7d790e3bf1a7c2257ce1dceff',\n PufferL2Depositor: '0x3436E0B85cd929929F5802e792CFE282166E0259',\n PufLocker: '0x48e8dE138C246c14248C94d2D616a2F9eb4590D2',\n L1RewardManager: '0x157788cc028Ac6405bD406f2D1e0A8A22b3cf17b',\n // L2RewardManager is not deployed to mainnet but base.\n L2RewardManager: '0x0000000000000000000000000000000000000000',\n PufferWithdrawalManager: '0xDdA0483184E75a5579ef9635ED14BacCf9d50283',\n NucleusAtomicQueue: '0x228c44bb4885c6633f4b6c83f14622f37d5112e5',\n CarrotStaker: '0x99c599227c65132822f0290d9e5b4b0430d6c0d6',\n Distributor: '0x3Ef3D8bA38EBe18DB133cEc108f4D14CE00Dd9Ae',\n ValidatorTicket: '0x7D26AD6F6BA9D6bA1de0218Ae5e20CD3a273a55A',\n PufferOracleV2: '0x0BE2aE0edbeBb517541DF217EF0074FC9a9e994f',\n PufferProtocol: '0xf7b6B32492c2e13799D921E84202450131bd238B',\n GuardianModule: '0x628b183F248a142A598AA2dcCCD6f7E480a7CcF2',\n GaugeRegistry: '0x0000000000000000000000000000000000000000',\n },\n [Chain.Holesky as number]: {\n PufferVault: '0x9196830bB4c05504E0A8475A0aD566AceEB6BeC9',\n PufferDepositor: '0x824AC05aeb86A0aD770b8acDe0906d2d4a6c4A8c',\n PufferL2Depositor: '0x0af6998e4828ad8ef8f79a9288d0a861890f791d',\n PufLocker: '0xa58983ad0899a452b7420bc57228e329d7ba92b6',\n L1RewardManager: '0x10f970bcb84B82B82a65eBCbF45F26dD26D69F12',\n L2RewardManager: '0x58C046794f69A8830b0BE737022a45b4acd01dE5',\n PufferWithdrawalManager: '0x5A3E1069B66800c0ecbc91bd81b1AE4D1804DBc4',\n ValidatorTicket: '0xB028194785178a94Fe608994A4d5AD84c285A640',\n PufferOracleV2: '0x8e043ed3f06720615685d4978770cd5c8fe90fe3',\n PufferProtocol: '0xE00c79408B9De5BaD2FDEbB1688997a68eC988CD',\n GuardianModule: '0x0910310130d1c062def8b807528bdac80203bc66',\n GaugeRegistry: '0x0000000000000000000000000000000000000000',\n },\n [Chain.Sepolia as number]: {\n GaugeRegistry: '0x14b25b3a3C1e6032e7Fbf0309d1ef6881e9A8D7A',\n },\n [Chain.Base as number]: {\n L2RewardManager: '0xF9Dd335bF363b2E4ecFe3c94A86EBD7Dd3Dcf0e7',\n },\n};\n"],"names":["CONTRACT_ADDRESSES","Chain"],"mappings":"6HAIaA,EAAqB,CAIhC,CAACC,EAAAA,MAAM,OAAiB,EAAG,CACzB,YAAa,6CACb,gBAAiB,6CACjB,kBAAmB,6CACnB,UAAW,6CACX,gBAAiB,6CAEjB,gBAAiB,6CACjB,wBAAyB,6CACzB,mBAAoB,6CACpB,aAAc,6CACd,YAAa,6CACb,gBAAiB,6CACjB,eAAgB,6CAChB,eAAgB,6CAChB,eAAgB,6CAChB,cAAe,4CACjB,EACA,CAACA,EAAAA,MAAM,OAAiB,EAAG,CACzB,YAAa,6CACb,gBAAiB,6CACjB,kBAAmB,6CACnB,UAAW,6CACX,gBAAiB,6CACjB,gBAAiB,6CACjB,wBAAyB,6CACzB,gBAAiB,6CACjB,eAAgB,6CAChB,eAAgB,6CAChB,eAAgB,6CAChB,cAAe,4CACjB,EACA,CAACA,EAAAA,MAAM,OAAiB,EAAG,CACzB,cAAe,4CACjB,EACA,CAACA,EAAAA,MAAM,IAAc,EAAG,CACtB,gBAAiB,4CAAA,CAErB"}
|
|
@@ -14,6 +14,7 @@ export declare const CONTRACT_ADDRESSES: {
|
|
|
14
14
|
PufferOracleV2: string;
|
|
15
15
|
PufferProtocol: string;
|
|
16
16
|
GuardianModule: string;
|
|
17
|
+
GaugeRegistry: string;
|
|
17
18
|
} | {
|
|
18
19
|
PufferVault: string;
|
|
19
20
|
PufferDepositor: string;
|
|
@@ -26,9 +27,26 @@ export declare const CONTRACT_ADDRESSES: {
|
|
|
26
27
|
PufferOracleV2: string;
|
|
27
28
|
PufferProtocol: string;
|
|
28
29
|
GuardianModule: string;
|
|
30
|
+
GaugeRegistry: string;
|
|
29
31
|
NucleusAtomicQueue?: undefined;
|
|
30
32
|
CarrotStaker?: undefined;
|
|
31
33
|
Distributor?: undefined;
|
|
34
|
+
} | {
|
|
35
|
+
GaugeRegistry: string;
|
|
36
|
+
PufferVault?: undefined;
|
|
37
|
+
PufferDepositor?: undefined;
|
|
38
|
+
PufferL2Depositor?: undefined;
|
|
39
|
+
PufLocker?: undefined;
|
|
40
|
+
L1RewardManager?: undefined;
|
|
41
|
+
L2RewardManager?: undefined;
|
|
42
|
+
PufferWithdrawalManager?: undefined;
|
|
43
|
+
NucleusAtomicQueue?: undefined;
|
|
44
|
+
CarrotStaker?: undefined;
|
|
45
|
+
Distributor?: undefined;
|
|
46
|
+
ValidatorTicket?: undefined;
|
|
47
|
+
PufferOracleV2?: undefined;
|
|
48
|
+
PufferProtocol?: undefined;
|
|
49
|
+
GuardianModule?: undefined;
|
|
32
50
|
} | {
|
|
33
51
|
L2RewardManager: string;
|
|
34
52
|
PufferVault?: undefined;
|
|
@@ -44,5 +62,6 @@ export declare const CONTRACT_ADDRESSES: {
|
|
|
44
62
|
PufferOracleV2?: undefined;
|
|
45
63
|
PufferProtocol?: undefined;
|
|
46
64
|
GuardianModule?: undefined;
|
|
65
|
+
GaugeRegistry?: undefined;
|
|
47
66
|
};
|
|
48
67
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { C as e } from "../constants-C9YZ6Ewc.js";
|
|
2
|
-
const
|
|
2
|
+
const f = {
|
|
3
3
|
// Casting to number so the consumer can use chain ids. Also not using
|
|
4
4
|
// a generic type for the variable so the consumer knows which
|
|
5
5
|
// contracts can be accessed.
|
|
@@ -18,7 +18,8 @@ const c = {
|
|
|
18
18
|
ValidatorTicket: "0x7D26AD6F6BA9D6bA1de0218Ae5e20CD3a273a55A",
|
|
19
19
|
PufferOracleV2: "0x0BE2aE0edbeBb517541DF217EF0074FC9a9e994f",
|
|
20
20
|
PufferProtocol: "0xf7b6B32492c2e13799D921E84202450131bd238B",
|
|
21
|
-
GuardianModule: "0x628b183F248a142A598AA2dcCCD6f7E480a7CcF2"
|
|
21
|
+
GuardianModule: "0x628b183F248a142A598AA2dcCCD6f7E480a7CcF2",
|
|
22
|
+
GaugeRegistry: "0x0000000000000000000000000000000000000000"
|
|
22
23
|
},
|
|
23
24
|
[e.Holesky]: {
|
|
24
25
|
PufferVault: "0x9196830bB4c05504E0A8475A0aD566AceEB6BeC9",
|
|
@@ -31,13 +32,17 @@ const c = {
|
|
|
31
32
|
ValidatorTicket: "0xB028194785178a94Fe608994A4d5AD84c285A640",
|
|
32
33
|
PufferOracleV2: "0x8e043ed3f06720615685d4978770cd5c8fe90fe3",
|
|
33
34
|
PufferProtocol: "0xE00c79408B9De5BaD2FDEbB1688997a68eC988CD",
|
|
34
|
-
GuardianModule: "0x0910310130d1c062def8b807528bdac80203bc66"
|
|
35
|
+
GuardianModule: "0x0910310130d1c062def8b807528bdac80203bc66",
|
|
36
|
+
GaugeRegistry: "0x0000000000000000000000000000000000000000"
|
|
37
|
+
},
|
|
38
|
+
[e.Sepolia]: {
|
|
39
|
+
GaugeRegistry: "0x14b25b3a3C1e6032e7Fbf0309d1ef6881e9A8D7A"
|
|
35
40
|
},
|
|
36
41
|
[e.Base]: {
|
|
37
42
|
L2RewardManager: "0xF9Dd335bF363b2E4ecFe3c94A86EBD7Dd3Dcf0e7"
|
|
38
43
|
}
|
|
39
44
|
};
|
|
40
45
|
export {
|
|
41
|
-
|
|
46
|
+
f as CONTRACT_ADDRESSES
|
|
42
47
|
};
|
|
43
48
|
//# sourceMappingURL=addresses.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"addresses.js","sources":["../../lib/contracts/addresses.ts"],"sourcesContent":["import { Chain } from '../chains/constants';\n\n// Source of truth:\n// https://github.com/PufferFinance/Deployments-and-ACL/tree/main/docs/deployments\nexport const CONTRACT_ADDRESSES = {\n // Casting to number so the consumer can use chain ids. Also not using\n // a generic type for the variable so the consumer knows which\n // contracts can be accessed.\n [Chain.Mainnet as number]: {\n PufferVault: '0xD9A442856C234a39a81a089C06451EBAa4306a72',\n PufferDepositor: '0x4aa799c5dfc01ee7d790e3bf1a7c2257ce1dceff',\n PufferL2Depositor: '0x3436E0B85cd929929F5802e792CFE282166E0259',\n PufLocker: '0x48e8dE138C246c14248C94d2D616a2F9eb4590D2',\n L1RewardManager: '0x157788cc028Ac6405bD406f2D1e0A8A22b3cf17b',\n // L2RewardManager is not deployed to mainnet but base.\n L2RewardManager: '0x0000000000000000000000000000000000000000',\n PufferWithdrawalManager: '0xDdA0483184E75a5579ef9635ED14BacCf9d50283',\n NucleusAtomicQueue: '0x228c44bb4885c6633f4b6c83f14622f37d5112e5',\n CarrotStaker: '0x99c599227c65132822f0290d9e5b4b0430d6c0d6',\n Distributor: '0x3Ef3D8bA38EBe18DB133cEc108f4D14CE00Dd9Ae',\n ValidatorTicket: '0x7D26AD6F6BA9D6bA1de0218Ae5e20CD3a273a55A',\n PufferOracleV2: '0x0BE2aE0edbeBb517541DF217EF0074FC9a9e994f',\n PufferProtocol: '0xf7b6B32492c2e13799D921E84202450131bd238B',\n GuardianModule: '0x628b183F248a142A598AA2dcCCD6f7E480a7CcF2',\n },\n [Chain.Holesky as number]: {\n PufferVault: '0x9196830bB4c05504E0A8475A0aD566AceEB6BeC9',\n PufferDepositor: '0x824AC05aeb86A0aD770b8acDe0906d2d4a6c4A8c',\n PufferL2Depositor: '0x0af6998e4828ad8ef8f79a9288d0a861890f791d',\n PufLocker: '0xa58983ad0899a452b7420bc57228e329d7ba92b6',\n L1RewardManager: '0x10f970bcb84B82B82a65eBCbF45F26dD26D69F12',\n L2RewardManager: '0x58C046794f69A8830b0BE737022a45b4acd01dE5',\n PufferWithdrawalManager: '0x5A3E1069B66800c0ecbc91bd81b1AE4D1804DBc4',\n ValidatorTicket: '0xB028194785178a94Fe608994A4d5AD84c285A640',\n PufferOracleV2: '0x8e043ed3f06720615685d4978770cd5c8fe90fe3',\n PufferProtocol: '0xE00c79408B9De5BaD2FDEbB1688997a68eC988CD',\n GuardianModule: '0x0910310130d1c062def8b807528bdac80203bc66',\n },\n [Chain.Base as number]: {\n L2RewardManager: '0xF9Dd335bF363b2E4ecFe3c94A86EBD7Dd3Dcf0e7',\n },\n};\n"],"names":["CONTRACT_ADDRESSES","Chain"],"mappings":";AAIO,MAAMA,IAAqB;AAAA;AAAA;AAAA;AAAA,EAIhC,CAACC,EAAM,OAAiB,GAAG;AAAA,IACzB,aAAa;AAAA,IACb,iBAAiB;AAAA,IACjB,mBAAmB;AAAA,IACnB,WAAW;AAAA,IACX,iBAAiB;AAAA;AAAA,IAEjB,iBAAiB;AAAA,IACjB,yBAAyB;AAAA,IACzB,oBAAoB;AAAA,IACpB,cAAc;AAAA,IACd,aAAa;AAAA,IACb,iBAAiB;AAAA,IACjB,gBAAgB;AAAA,IAChB,gBAAgB;AAAA,IAChB,gBAAgB;AAAA,
|
|
1
|
+
{"version":3,"file":"addresses.js","sources":["../../lib/contracts/addresses.ts"],"sourcesContent":["import { Chain } from '../chains/constants';\n\n// Source of truth:\n// https://github.com/PufferFinance/Deployments-and-ACL/tree/main/docs/deployments\nexport const CONTRACT_ADDRESSES = {\n // Casting to number so the consumer can use chain ids. Also not using\n // a generic type for the variable so the consumer knows which\n // contracts can be accessed.\n [Chain.Mainnet as number]: {\n PufferVault: '0xD9A442856C234a39a81a089C06451EBAa4306a72',\n PufferDepositor: '0x4aa799c5dfc01ee7d790e3bf1a7c2257ce1dceff',\n PufferL2Depositor: '0x3436E0B85cd929929F5802e792CFE282166E0259',\n PufLocker: '0x48e8dE138C246c14248C94d2D616a2F9eb4590D2',\n L1RewardManager: '0x157788cc028Ac6405bD406f2D1e0A8A22b3cf17b',\n // L2RewardManager is not deployed to mainnet but base.\n L2RewardManager: '0x0000000000000000000000000000000000000000',\n PufferWithdrawalManager: '0xDdA0483184E75a5579ef9635ED14BacCf9d50283',\n NucleusAtomicQueue: '0x228c44bb4885c6633f4b6c83f14622f37d5112e5',\n CarrotStaker: '0x99c599227c65132822f0290d9e5b4b0430d6c0d6',\n Distributor: '0x3Ef3D8bA38EBe18DB133cEc108f4D14CE00Dd9Ae',\n ValidatorTicket: '0x7D26AD6F6BA9D6bA1de0218Ae5e20CD3a273a55A',\n PufferOracleV2: '0x0BE2aE0edbeBb517541DF217EF0074FC9a9e994f',\n PufferProtocol: '0xf7b6B32492c2e13799D921E84202450131bd238B',\n GuardianModule: '0x628b183F248a142A598AA2dcCCD6f7E480a7CcF2',\n GaugeRegistry: '0x0000000000000000000000000000000000000000',\n },\n [Chain.Holesky as number]: {\n PufferVault: '0x9196830bB4c05504E0A8475A0aD566AceEB6BeC9',\n PufferDepositor: '0x824AC05aeb86A0aD770b8acDe0906d2d4a6c4A8c',\n PufferL2Depositor: '0x0af6998e4828ad8ef8f79a9288d0a861890f791d',\n PufLocker: '0xa58983ad0899a452b7420bc57228e329d7ba92b6',\n L1RewardManager: '0x10f970bcb84B82B82a65eBCbF45F26dD26D69F12',\n L2RewardManager: '0x58C046794f69A8830b0BE737022a45b4acd01dE5',\n PufferWithdrawalManager: '0x5A3E1069B66800c0ecbc91bd81b1AE4D1804DBc4',\n ValidatorTicket: '0xB028194785178a94Fe608994A4d5AD84c285A640',\n PufferOracleV2: '0x8e043ed3f06720615685d4978770cd5c8fe90fe3',\n PufferProtocol: '0xE00c79408B9De5BaD2FDEbB1688997a68eC988CD',\n GuardianModule: '0x0910310130d1c062def8b807528bdac80203bc66',\n GaugeRegistry: '0x0000000000000000000000000000000000000000',\n },\n [Chain.Sepolia as number]: {\n GaugeRegistry: '0x14b25b3a3C1e6032e7Fbf0309d1ef6881e9A8D7A',\n },\n [Chain.Base as number]: {\n L2RewardManager: '0xF9Dd335bF363b2E4ecFe3c94A86EBD7Dd3Dcf0e7',\n },\n};\n"],"names":["CONTRACT_ADDRESSES","Chain"],"mappings":";AAIO,MAAMA,IAAqB;AAAA;AAAA;AAAA;AAAA,EAIhC,CAACC,EAAM,OAAiB,GAAG;AAAA,IACzB,aAAa;AAAA,IACb,iBAAiB;AAAA,IACjB,mBAAmB;AAAA,IACnB,WAAW;AAAA,IACX,iBAAiB;AAAA;AAAA,IAEjB,iBAAiB;AAAA,IACjB,yBAAyB;AAAA,IACzB,oBAAoB;AAAA,IACpB,cAAc;AAAA,IACd,aAAa;AAAA,IACb,iBAAiB;AAAA,IACjB,gBAAgB;AAAA,IAChB,gBAAgB;AAAA,IAChB,gBAAgB;AAAA,IAChB,eAAe;AAAA,EACjB;AAAA,EACA,CAACA,EAAM,OAAiB,GAAG;AAAA,IACzB,aAAa;AAAA,IACb,iBAAiB;AAAA,IACjB,mBAAmB;AAAA,IACnB,WAAW;AAAA,IACX,iBAAiB;AAAA,IACjB,iBAAiB;AAAA,IACjB,yBAAyB;AAAA,IACzB,iBAAiB;AAAA,IACjB,gBAAgB;AAAA,IAChB,gBAAgB;AAAA,IAChB,gBAAgB;AAAA,IAChB,eAAe;AAAA,EACjB;AAAA,EACA,CAACA,EAAM,OAAiB,GAAG;AAAA,IACzB,eAAe;AAAA,EACjB;AAAA,EACA,CAACA,EAAM,IAAc,GAAG;AAAA,IACtB,iBAAiB;AAAA,EAAA;AAErB;"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";var r=Object.defineProperty;var c=(i,t,e)=>t in i?r(i,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):i[t]=e;var n=(i,t,e)=>c(i,typeof t!="symbol"?t+"":t,e);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const s=require("../../constants-CxSgz27h.cjs"),u=require("../abis/mainnet/GaugeRegistry.cjs"),h=require("../addresses.cjs"),g=require("../../getContract-DUA3M2pm.cjs");class o{constructor(t,e,a){n(this,"viemChain");this.chain=t,this.walletClient=e,this.publicClient=a,this.viemChain=s.VIEM_CHAINS[t]}getContract(){const t=h.CONTRACT_ADDRESSES[this.chain].GaugeRegistry,e=u.GaugeRegistry,a={public:this.publicClient,wallet:this.walletClient};return g.getContract({address:t,abi:e,client:a})}owner(){return this.getContract().read.owner()}pendingOwner(){return this.getContract().read.pendingOwner()}gaugeExists(t){return this.getContract().read.gaugeExists([t])}isActive(t){return this.getContract().read.isActive([t])}async getGauge(t){return await this.getContract().read.getGauge([t])}getGaugeList(){return this.getContract().read.getGaugeList()}registerGauge(t,e){return this.getContract().write.registerGauge([t,e],{account:this.walletClient.account,chain:this.viemChain})}activateGauge(t){return this.getContract().write.activateGauge([t],{account:this.walletClient.account,chain:this.viemChain})}deactivateGauge(t){return this.getContract().write.deactivateGauge([t],{account:this.walletClient.account,chain:this.viemChain})}updateGaugeMetadata(t,e){return this.getContract().write.updateGaugeMetadata([t,e],{account:this.walletClient.account,chain:this.viemChain})}transferOwnership(t){return this.getContract().write.transferOwnership([t],{account:this.walletClient.account,chain:this.viemChain})}acceptOwnership(){return this.getContract().write.acceptOwnership({account:this.walletClient.account,chain:this.viemChain})}renounceOwnership(){return this.getContract().write.renounceOwnership({account:this.walletClient.account,chain:this.viemChain})}}exports.GaugeRegistryHandler=o;
|
|
2
|
+
//# sourceMappingURL=gauge-registry-handler.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"gauge-registry-handler.cjs","sources":["../../../lib/contracts/handlers/gauge-registry-handler.ts"],"sourcesContent":["import {\n Address,\n GetContractReturnType,\n PublicClient,\n Chain as ViemChain,\n WalletClient,\n getContract,\n Account,\n} from 'viem';\nimport { Chain, VIEM_CHAINS } from '../../chains/constants';\nimport { GaugeRegistry } from '../abis/mainnet/GaugeRegistry';\nimport { CONTRACT_ADDRESSES } from '../addresses';\n\n/**\n * Handler for the `GaugeRegistry` contract exposing methods to interact\n * with the contract.\n */\nexport class GaugeRegistryHandler {\n private viemChain: ViemChain;\n\n /**\n * Create the handler for the `GaugeRegistry` contract exposing methods to\n * interact with the contract.\n *\n * @param chain Chain to use for the client.\n * @param walletClient The wallet client to use for wallet\n * interactions.\n * @param publicClient The public client to use for public\n * interactions.\n */\n constructor(\n private chain: Chain,\n private walletClient: WalletClient,\n private publicClient: PublicClient,\n ) {\n this.viemChain = VIEM_CHAINS[chain];\n }\n\n /**\n * Get the contract.\n *\n * @returns The viem contract.\n */\n public getContract() {\n const address = CONTRACT_ADDRESSES[this.chain as number]\n .GaugeRegistry as Address;\n const abi = GaugeRegistry;\n const client = { public: this.publicClient, wallet: this.walletClient };\n\n return getContract({ address, abi, client }) as GetContractReturnType<\n typeof GaugeRegistry,\n typeof client,\n Address\n >;\n }\n\n /**\n * Get the owner of the contract.\n *\n * @returns The owner address.\n */\n public owner() {\n return this.getContract().read.owner();\n }\n\n /**\n * Get the pending owner of the contract.\n *\n * @returns The pending owner address.\n */\n public pendingOwner() {\n return this.getContract().read.pendingOwner();\n }\n\n /**\n * Check if a gauge exists.\n *\n * @param gauge The gauge address to check.\n * @returns True if the gauge exists, false otherwise.\n */\n public gaugeExists(gauge: Address) {\n return this.getContract().read.gaugeExists([gauge]);\n }\n\n /**\n * Check if a gauge is active.\n *\n * @param gauge The gauge address to check.\n * @returns True if the gauge is active, false otherwise.\n */\n public isActive(gauge: Address) {\n return this.getContract().read.isActive([gauge]);\n }\n\n /**\n * Get gauge information.\n *\n * @param gauge The gauge address.\n * @returns The gauge information including active status, creation time, and metadata URI.\n */\n public async getGauge(gauge: Address) {\n return await this.getContract().read.getGauge([gauge]);\n }\n\n /**\n * Get the list of all gauges.\n *\n * @returns Array of gauge addresses.\n */\n public getGaugeList() {\n return this.getContract().read.getGaugeList();\n }\n\n /**\n * Register a new gauge.\n *\n * @param gauge The gauge address to register.\n * @param metadataURI The metadata URI for the gauge.\n * @returns The transaction.\n */\n public registerGauge(gauge: Address, metadataURI: string) {\n return this.getContract().write.registerGauge([gauge, metadataURI], {\n account: this.walletClient.account as Account,\n chain: this.viemChain,\n });\n }\n\n /**\n * Activate a gauge.\n *\n * @param gauge The gauge address to activate.\n * @returns The transaction.\n */\n public activateGauge(gauge: Address) {\n return this.getContract().write.activateGauge([gauge], {\n account: this.walletClient.account as Account,\n chain: this.viemChain,\n });\n }\n\n /**\n * Deactivate a gauge.\n *\n * @param gauge The gauge address to deactivate.\n * @returns The transaction.\n */\n public deactivateGauge(gauge: Address) {\n return this.getContract().write.deactivateGauge([gauge], {\n account: this.walletClient.account as Account,\n chain: this.viemChain,\n });\n }\n\n /**\n * Update gauge metadata.\n *\n * @param gauge The gauge address to update.\n * @param metadataURI The new metadata URI for the gauge.\n * @returns The transaction.\n */\n public updateGaugeMetadata(gauge: Address, metadataURI: string) {\n return this.getContract().write.updateGaugeMetadata([gauge, metadataURI], {\n account: this.walletClient.account as Account,\n chain: this.viemChain,\n });\n }\n\n /**\n * Transfer ownership to a new owner.\n *\n * @param newOwner The new owner address.\n * @returns The transaction.\n */\n public transferOwnership(newOwner: Address) {\n return this.getContract().write.transferOwnership([newOwner], {\n account: this.walletClient.account as Account,\n chain: this.viemChain,\n });\n }\n\n /**\n * Accept ownership transfer.\n *\n * @returns The transaction.\n */\n public acceptOwnership() {\n return this.getContract().write.acceptOwnership({\n account: this.walletClient.account as Account,\n chain: this.viemChain,\n });\n }\n\n /**\n * Renounce ownership.\n *\n * @returns The transaction.\n */\n public renounceOwnership() {\n return this.getContract().write.renounceOwnership({\n account: this.walletClient.account as Account,\n chain: this.viemChain,\n });\n }\n}\n"],"names":["GaugeRegistryHandler","chain","walletClient","publicClient","__publicField","VIEM_CHAINS","address","CONTRACT_ADDRESSES","abi","GaugeRegistry","client","getContract","gauge","metadataURI","newOwner"],"mappings":"6ZAiBO,MAAMA,CAAqB,CAahC,YACUC,EACAC,EACAC,EACR,CAhBMC,EAAA,kBAaE,KAAA,MAAAH,EACA,KAAA,aAAAC,EACA,KAAA,aAAAC,EAEH,KAAA,UAAYE,cAAYJ,CAAK,CAAA,CAQ7B,aAAc,CACnB,MAAMK,EAAUC,EAAA,mBAAmB,KAAK,KAAe,EACpD,cACGC,EAAMC,EAAA,cACNC,EAAS,CAAE,OAAQ,KAAK,aAAc,OAAQ,KAAK,YAAa,EAEtE,OAAOC,EAAY,YAAA,CAAE,QAAAL,EAAS,IAAAE,EAAK,OAAAE,EAAQ,CAAA,CAYtC,OAAQ,CACb,OAAO,KAAK,cAAc,KAAK,MAAM,CAAA,CAQhC,cAAe,CACpB,OAAO,KAAK,cAAc,KAAK,aAAa,CAAA,CASvC,YAAYE,EAAgB,CACjC,OAAO,KAAK,YAAY,EAAE,KAAK,YAAY,CAACA,CAAK,CAAC,CAAA,CAS7C,SAASA,EAAgB,CAC9B,OAAO,KAAK,YAAY,EAAE,KAAK,SAAS,CAACA,CAAK,CAAC,CAAA,CASjD,MAAa,SAASA,EAAgB,CAC7B,OAAA,MAAM,KAAK,YAAY,EAAE,KAAK,SAAS,CAACA,CAAK,CAAC,CAAA,CAQhD,cAAe,CACpB,OAAO,KAAK,cAAc,KAAK,aAAa,CAAA,CAUvC,cAAcA,EAAgBC,EAAqB,CACjD,OAAA,KAAK,cAAc,MAAM,cAAc,CAACD,EAAOC,CAAW,EAAG,CAClE,QAAS,KAAK,aAAa,QAC3B,MAAO,KAAK,SAAA,CACb,CAAA,CASI,cAAcD,EAAgB,CACnC,OAAO,KAAK,YAAY,EAAE,MAAM,cAAc,CAACA,CAAK,EAAG,CACrD,QAAS,KAAK,aAAa,QAC3B,MAAO,KAAK,SAAA,CACb,CAAA,CASI,gBAAgBA,EAAgB,CACrC,OAAO,KAAK,YAAY,EAAE,MAAM,gBAAgB,CAACA,CAAK,EAAG,CACvD,QAAS,KAAK,aAAa,QAC3B,MAAO,KAAK,SAAA,CACb,CAAA,CAUI,oBAAoBA,EAAgBC,EAAqB,CACvD,OAAA,KAAK,cAAc,MAAM,oBAAoB,CAACD,EAAOC,CAAW,EAAG,CACxE,QAAS,KAAK,aAAa,QAC3B,MAAO,KAAK,SAAA,CACb,CAAA,CASI,kBAAkBC,EAAmB,CAC1C,OAAO,KAAK,YAAY,EAAE,MAAM,kBAAkB,CAACA,CAAQ,EAAG,CAC5D,QAAS,KAAK,aAAa,QAC3B,MAAO,KAAK,SAAA,CACb,CAAA,CAQI,iBAAkB,CACvB,OAAO,KAAK,cAAc,MAAM,gBAAgB,CAC9C,QAAS,KAAK,aAAa,QAC3B,MAAO,KAAK,SAAA,CACb,CAAA,CAQI,mBAAoB,CACzB,OAAO,KAAK,cAAc,MAAM,kBAAkB,CAChD,QAAS,KAAK,aAAa,QAC3B,MAAO,KAAK,SAAA,CACb,CAAA,CAEL"}
|