@mainsail/evm-contracts 0.0.1-evm.10
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/LICENSE +623 -0
- package/README.md +86 -0
- package/distribution/abis/ConsensusV1.json +985 -0
- package/distribution/abis/ERC1967Proxy.json +181 -0
- package/distribution/abis/MultiPayment.json +84 -0
- package/distribution/abis/UsernamesV1.json +545 -0
- package/distribution/function-sigs.d.ts +10 -0
- package/distribution/function-sigs.d.ts.map +1 -0
- package/distribution/function-sigs.js +10 -0
- package/distribution/function-sigs.js.map +1 -0
- package/distribution/index.d.ts +6 -0
- package/distribution/index.d.ts.map +1 -0
- package/distribution/index.js +6 -0
- package/distribution/index.js.map +1 -0
- package/package.json +22 -0
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"function-sigs.d.ts","sourceRoot":"","sources":["../source/function-sigs.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY;;;;;;;;CAQxB,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"function-sigs.js","sourceRoot":"","sources":["../source/function-sigs.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,YAAY,GAAG;IAC3B,WAAW,EAAE;QACZ,iBAAiB,EAAE,YAAY;QAC/B,eAAe,EAAE,YAAY;QAC7B,MAAM,EAAE,YAAY;QACpB,eAAe,EAAE,YAAY;QAC7B,IAAI,EAAE,YAAY;KAClB;CACD,CAAC"}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
export { default as ConsensusAbi } from "./abis/ConsensusV1.json";
|
2
|
+
export { default as ERC1967ProxyAbi } from "./abis/ERC1967Proxy.json";
|
3
|
+
export { default as MultiPaymentAbi } from "./abis/MultiPayment.json";
|
4
|
+
export { default as UsernamesAbi } from "./abis/UsernamesV1.json";
|
5
|
+
export * from "./function-sigs.js";
|
6
|
+
//# sourceMappingURL=index.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,yBAAyB,CAAyB;AAC1F,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAyB;AAC9F,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAyB;AAC9F,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,yBAAyB,CAAyB;AAC1F,cAAc,oBAAoB,CAAC"}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
export { default as ConsensusAbi } from "./abis/ConsensusV1.json" assert { type: "json" };
|
2
|
+
export { default as ERC1967ProxyAbi } from "./abis/ERC1967Proxy.json" assert { type: "json" };
|
3
|
+
export { default as MultiPaymentAbi } from "./abis/MultiPayment.json" assert { type: "json" };
|
4
|
+
export { default as UsernamesAbi } from "./abis/UsernamesV1.json" assert { type: "json" };
|
5
|
+
export * from "./function-sigs.js";
|
6
|
+
//# sourceMappingURL=index.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,yBAAyB,CAAC,SAAS,IAAI,EAAE,MAAM,EAAE,CAAC;AAC1F,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC,SAAS,IAAI,EAAE,MAAM,EAAE,CAAC;AAC9F,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,0BAA0B,CAAC,SAAS,IAAI,EAAE,MAAM,EAAE,CAAC;AAC9F,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,yBAAyB,CAAC,SAAS,IAAI,EAAE,MAAM,EAAE,CAAC;AAC1F,cAAc,oBAAoB,CAAC"}
|
package/package.json
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"name": "@mainsail/evm-contracts",
|
3
|
+
"version": "0.0.1-evm.10",
|
4
|
+
"description": "EVM Contract ABIs for the Mainsail blockchain",
|
5
|
+
"license": "GPL-3.0-only",
|
6
|
+
"contributors": [],
|
7
|
+
"type": "module",
|
8
|
+
"main": "distribution/index.js",
|
9
|
+
"types": "distribution/index.d.ts",
|
10
|
+
"files": [
|
11
|
+
"/distribution"
|
12
|
+
],
|
13
|
+
"engines": {
|
14
|
+
"node": ">=20.x"
|
15
|
+
},
|
16
|
+
"scripts": {
|
17
|
+
"build": "pnpm run clean && tsc",
|
18
|
+
"build:watch": "pnpm run clean && tsc -w",
|
19
|
+
"clean": "del distribution",
|
20
|
+
"release": "pnpm publish --access public"
|
21
|
+
}
|
22
|
+
}
|