@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.
@@ -0,0 +1,10 @@
1
+ export declare const FunctionSigs: {
2
+ ConsensusV1: {
3
+ RegisterValidator: string;
4
+ ResignValidator: string;
5
+ Unvote: string;
6
+ UpdateValidator: string;
7
+ Vote: string;
8
+ };
9
+ };
10
+ //# sourceMappingURL=function-sigs.d.ts.map
@@ -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,10 @@
1
+ export const FunctionSigs = {
2
+ ConsensusV1: {
3
+ RegisterValidator: "0x602a9eee",
4
+ ResignValidator: "0xb85f5da2",
5
+ Unvote: "0x3174b689",
6
+ UpdateValidator: "0x5a8eed73",
7
+ Vote: "0x6dd7d8ea",
8
+ },
9
+ };
10
+ //# sourceMappingURL=function-sigs.js.map
@@ -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
+ }