@gitmyabi/yspendle-lpt 1.0.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/README.md +108 -0
- package/contracts/PendleLPCompounder_json.d.ts +1675 -0
- package/contracts/PendleLPCompounder_json.js +1575 -0
- package/contracts/PendleLPCompounder_json.ts +2181 -0
- package/contracts/TokenizedStrategy_json.d.ts +2144 -0
- package/contracts/TokenizedStrategy_json.js +2338 -0
- package/contracts/TokenizedStrategy_json.ts +2872 -0
- package/contracts/index.d.ts +4 -0
- package/contracts/index.js +10 -0
- package/contracts/index.ts +5 -0
- package/index.d.ts +1 -0
- package/index.js +19 -0
- package/package.json +43 -0
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { PendleLPCompounder_jsonAbi, PendleLPCompounder_json } from './PendleLPCompounder_json';
|
|
2
|
+
export type { PendleLPCompounder_jsonAbi as PendleLPCompounder_jsonAbiType, PendleLPCompounder_jsonContract } from './PendleLPCompounder_json';
|
|
3
|
+
export { TokenizedStrategy_jsonAbi, TokenizedStrategy_json } from './TokenizedStrategy_json';
|
|
4
|
+
export type { TokenizedStrategy_jsonAbi as TokenizedStrategy_jsonAbiType, TokenizedStrategy_jsonContract } from './TokenizedStrategy_json';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TokenizedStrategy_json = exports.TokenizedStrategy_jsonAbi = exports.PendleLPCompounder_json = exports.PendleLPCompounder_jsonAbi = void 0;
|
|
4
|
+
// Auto-generated exports for all contracts
|
|
5
|
+
var PendleLPCompounder_json_1 = require("./PendleLPCompounder_json");
|
|
6
|
+
Object.defineProperty(exports, "PendleLPCompounder_jsonAbi", { enumerable: true, get: function () { return PendleLPCompounder_json_1.PendleLPCompounder_jsonAbi; } });
|
|
7
|
+
Object.defineProperty(exports, "PendleLPCompounder_json", { enumerable: true, get: function () { return PendleLPCompounder_json_1.PendleLPCompounder_json; } });
|
|
8
|
+
var TokenizedStrategy_json_1 = require("./TokenizedStrategy_json");
|
|
9
|
+
Object.defineProperty(exports, "TokenizedStrategy_jsonAbi", { enumerable: true, get: function () { return TokenizedStrategy_json_1.TokenizedStrategy_jsonAbi; } });
|
|
10
|
+
Object.defineProperty(exports, "TokenizedStrategy_json", { enumerable: true, get: function () { return TokenizedStrategy_json_1.TokenizedStrategy_json; } });
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
// Auto-generated exports for all contracts
|
|
2
|
+
export { PendleLPCompounder_jsonAbi, PendleLPCompounder_json } from './PendleLPCompounder_json';
|
|
3
|
+
export type { PendleLPCompounder_jsonAbi as PendleLPCompounder_jsonAbiType, PendleLPCompounder_jsonContract } from './PendleLPCompounder_json';
|
|
4
|
+
export { TokenizedStrategy_jsonAbi, TokenizedStrategy_json } from './TokenizedStrategy_json';
|
|
5
|
+
export type { TokenizedStrategy_jsonAbi as TokenizedStrategy_jsonAbiType, TokenizedStrategy_jsonContract } from './TokenizedStrategy_json';
|
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './contracts';
|
package/index.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Auto-generated TypeScript type bindings
|
|
3
|
+
// This file exports all generated contract types
|
|
4
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
|
+
};
|
|
18
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
+
__exportStar(require("./contracts"), exports);
|
package/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gitmyabi/yspendle-lpt",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Auto-generated TypeScript type bindings for ysPENDLE-LPT (build etherscan-yspendle-lpt-564f7b5d-1789232474659, commit 7b193f8, branch etherscan)",
|
|
5
|
+
"main": "./index.js",
|
|
6
|
+
"types": "./index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"import": "./index.js",
|
|
10
|
+
"require": "./index.js",
|
|
11
|
+
"types": "./index.d.ts"
|
|
12
|
+
},
|
|
13
|
+
"./contracts": {
|
|
14
|
+
"import": "./contracts/index.js",
|
|
15
|
+
"require": "./contracts/index.js",
|
|
16
|
+
"types": "./contracts/index.d.ts"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"index.js",
|
|
21
|
+
"index.d.ts",
|
|
22
|
+
"contracts"
|
|
23
|
+
],
|
|
24
|
+
"keywords": [
|
|
25
|
+
"ethereum",
|
|
26
|
+
"smart-contracts",
|
|
27
|
+
"viem",
|
|
28
|
+
"wagmi",
|
|
29
|
+
"typescript",
|
|
30
|
+
"abi",
|
|
31
|
+
"ethers-v6"
|
|
32
|
+
],
|
|
33
|
+
"license": "MIT",
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"viem": "^2.0.0"
|
|
36
|
+
},
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/etherscan/yspendle-lpt"
|
|
40
|
+
},
|
|
41
|
+
"branch": "etherscan",
|
|
42
|
+
"shortHash": "7b193f8"
|
|
43
|
+
}
|