genlayer-js 0.5.0 → 0.6.1
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/.eslintrc.cjs +1 -1
- package/CHANGELOG.md +14 -0
- package/README.md +1 -0
- package/dist/{chunk-M7SA3INM.js → chunk-2EJVFGKU.js} +3 -3
- package/dist/{chunk-YI62SDKV.cjs → chunk-52HYC24L.cjs} +3 -3
- package/dist/index-B1ZR98OZ.d.ts +172 -0
- package/dist/index-CIFGsVKF.d.cts +172 -0
- package/dist/index.cjs +239 -107
- package/dist/index.d.cts +33 -2
- package/dist/index.d.ts +33 -2
- package/dist/index.js +239 -107
- package/dist/types/index.cjs +4 -2
- package/dist/types/index.d.cts +2 -164
- package/dist/types/index.d.ts +2 -164
- package/dist/types/index.js +3 -1
- package/package.json +1 -1
- package/src/abi/calldata/decoder.ts +2 -2
- package/src/abi/calldata/encoder.ts +3 -90
- package/src/abi/calldata/index.ts +3 -0
- package/src/abi/calldata/string.ts +83 -0
- package/src/abi/index.ts +5 -1
- package/src/abi/transactions.ts +11 -0
- package/src/contracts/actions.ts +78 -35
- package/src/index.ts +1 -0
- package/src/types/calldata.ts +3 -9
- package/src/types/clients.ts +13 -8
- package/src/types/index.ts +1 -1
- package/tests/client.test.ts +7 -5
- package/src/contracts/IContractActions.ts +0 -8
package/.eslintrc.cjs
CHANGED
|
@@ -39,7 +39,7 @@ module.exports = {
|
|
|
39
39
|
"no-fallthrough": "off",
|
|
40
40
|
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
41
41
|
"@typescript-eslint/no-floating-promises": ["error"],
|
|
42
|
-
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
|
|
42
|
+
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_", varsIgnorePattern: "^_" }],
|
|
43
43
|
},
|
|
44
44
|
},
|
|
45
45
|
],
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## 0.6.1 (2025-01-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* refactor abi to prevent confusion ([#51](https://github.com/yeagerai/genlayer-js/issues/51)) ([6ccb09e](https://github.com/yeagerai/genlayer-js/commit/6ccb09eba33eaedb147a0dde5112f54d56dd1e09))
|
|
9
|
+
|
|
10
|
+
## 0.6.0 (2025-01-09)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* add stateStatus in readContract ([#50](https://github.com/yeagerai/genlayer-js/issues/50)) ([a9bcf8d](https://github.com/yeagerai/genlayer-js/commit/a9bcf8d83890448b85282ceb0c33060a19ea4e9a))
|
|
16
|
+
|
|
3
17
|
## 0.5.0 (2025-01-08)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// src/types/calldata.ts
|
|
2
|
-
var
|
|
2
|
+
var CalldataAddress = class {
|
|
3
3
|
bytes;
|
|
4
4
|
constructor(addr) {
|
|
5
|
-
if (addr.length !=
|
|
5
|
+
if (addr.length != 20) {
|
|
6
6
|
throw new Error(`invalid address length ${addr}`);
|
|
7
7
|
}
|
|
8
8
|
this.bytes = addr;
|
|
@@ -23,6 +23,6 @@ var TransactionStatus = /* @__PURE__ */ ((TransactionStatus2) => {
|
|
|
23
23
|
})(TransactionStatus || {});
|
|
24
24
|
|
|
25
25
|
export {
|
|
26
|
-
|
|
26
|
+
CalldataAddress,
|
|
27
27
|
TransactionStatus
|
|
28
28
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/types/calldata.ts
|
|
2
|
-
var
|
|
2
|
+
var CalldataAddress = class {
|
|
3
3
|
|
|
4
4
|
constructor(addr) {
|
|
5
|
-
if (addr.length !=
|
|
5
|
+
if (addr.length != 20) {
|
|
6
6
|
throw new Error(`invalid address length ${addr}`);
|
|
7
7
|
}
|
|
8
8
|
this.bytes = addr;
|
|
@@ -25,4 +25,4 @@ var TransactionStatus = /* @__PURE__ */ ((TransactionStatus2) => {
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
|
|
28
|
-
exports.
|
|
28
|
+
exports.CalldataAddress = CalldataAddress; exports.TransactionStatus = TransactionStatus;
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
import { S as SimulatorChain } from './chains-BV4Glo-M.js';
|
|
2
|
+
import { Client, Transport, PublicActions, Account } from 'viem';
|
|
3
|
+
|
|
4
|
+
type Address = `0x${string}` & {
|
|
5
|
+
length: 42;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
declare class CalldataAddress {
|
|
9
|
+
bytes: Uint8Array;
|
|
10
|
+
constructor(addr: Uint8Array);
|
|
11
|
+
}
|
|
12
|
+
type CalldataEncodable = null | boolean | CalldataAddress | number | bigint | string | Uint8Array | Array<CalldataEncodable> | Map<string, CalldataEncodable> | {
|
|
13
|
+
[key: string]: CalldataEncodable;
|
|
14
|
+
};
|
|
15
|
+
type MethodDescription = {
|
|
16
|
+
method: string;
|
|
17
|
+
args: Array<CalldataEncodable>;
|
|
18
|
+
};
|
|
19
|
+
type TransactionDataElement$1 = string | number | bigint | boolean | Uint8Array;
|
|
20
|
+
|
|
21
|
+
type TransactionHash = `0x${string}` & {
|
|
22
|
+
length: 66;
|
|
23
|
+
};
|
|
24
|
+
declare enum TransactionStatus {
|
|
25
|
+
PENDING = "PENDING",
|
|
26
|
+
CANCELED = "CANCELED",
|
|
27
|
+
PROPOSING = "PROPOSING",
|
|
28
|
+
COMMITTING = "COMMITTING",
|
|
29
|
+
REVEALING = "REVEALING",
|
|
30
|
+
ACCEPTED = "ACCEPTED",
|
|
31
|
+
FINALIZED = "FINALIZED",
|
|
32
|
+
UNDETERMINED = "UNDETERMINED"
|
|
33
|
+
}
|
|
34
|
+
type GenLayerTransaction = {
|
|
35
|
+
hash: TransactionHash;
|
|
36
|
+
status: TransactionStatus;
|
|
37
|
+
from_address?: string;
|
|
38
|
+
to_address?: string;
|
|
39
|
+
data?: Record<string, unknown>;
|
|
40
|
+
consensus_data?: {
|
|
41
|
+
final: boolean;
|
|
42
|
+
leader_receipt?: {
|
|
43
|
+
calldata: string;
|
|
44
|
+
class_name: string;
|
|
45
|
+
contract_state: string;
|
|
46
|
+
eq_outputs: Record<string, unknown>;
|
|
47
|
+
error: string | null;
|
|
48
|
+
execution_result: string;
|
|
49
|
+
gas_used: number;
|
|
50
|
+
mode: string;
|
|
51
|
+
node_config: Record<string, unknown>;
|
|
52
|
+
pending_transactions: unknown[];
|
|
53
|
+
vote: string;
|
|
54
|
+
};
|
|
55
|
+
validators?: Record<string, unknown>[];
|
|
56
|
+
votes?: Record<string, string>;
|
|
57
|
+
};
|
|
58
|
+
nonce?: number;
|
|
59
|
+
value?: number;
|
|
60
|
+
type?: number;
|
|
61
|
+
gaslimit?: bigint;
|
|
62
|
+
created_at?: Date;
|
|
63
|
+
r?: number;
|
|
64
|
+
s?: number;
|
|
65
|
+
v?: number;
|
|
66
|
+
};
|
|
67
|
+
type TransactionDataElement = string | number | bigint | boolean | Uint8Array;
|
|
68
|
+
|
|
69
|
+
type ContractParamsArraySchemaElement = ContractParamsSchema | {
|
|
70
|
+
$rep: ContractParamsSchema;
|
|
71
|
+
};
|
|
72
|
+
type ContractParamsSchema = "null" | "bool" | "int" | "address" | "string" | "bytes" | "any" | "array" | "dict" | {
|
|
73
|
+
$or: ContractParamsSchema[];
|
|
74
|
+
} | {
|
|
75
|
+
$dict: ContractParamsSchema;
|
|
76
|
+
} | {
|
|
77
|
+
[key: string]: ContractParamsSchema;
|
|
78
|
+
} | ContractParamsArraySchemaElement[];
|
|
79
|
+
interface ContractMethodBase {
|
|
80
|
+
params: [string, ContractParamsSchema][];
|
|
81
|
+
kwparams: {
|
|
82
|
+
[key: string]: ContractParamsSchema;
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
interface ContractMethod extends ContractMethodBase {
|
|
86
|
+
ret: ContractParamsSchema;
|
|
87
|
+
readonly: boolean;
|
|
88
|
+
}
|
|
89
|
+
type ContractSchema = {
|
|
90
|
+
ctor: ContractMethodBase;
|
|
91
|
+
methods: ContractMethod[];
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
type GenLayerMethod = {
|
|
95
|
+
method: "sim_fundAccount";
|
|
96
|
+
params: [address: string, amount: number];
|
|
97
|
+
} | {
|
|
98
|
+
method: "eth_getTransactionByHash";
|
|
99
|
+
params: [hash: TransactionHash];
|
|
100
|
+
} | {
|
|
101
|
+
method: "eth_call";
|
|
102
|
+
params: [requestParams: any, blockNumberOrHash: string];
|
|
103
|
+
} | {
|
|
104
|
+
method: "eth_sendRawTransaction";
|
|
105
|
+
params: [signedTransaction: string];
|
|
106
|
+
} | {
|
|
107
|
+
method: "gen_getContractSchema";
|
|
108
|
+
params: [address: string];
|
|
109
|
+
} | {
|
|
110
|
+
method: "gen_getContractSchemaForCode";
|
|
111
|
+
params: [contractCode: string];
|
|
112
|
+
} | {
|
|
113
|
+
method: "sim_getTransactionsForAddress";
|
|
114
|
+
params: [address: string, filter?: "all" | "from" | "to"];
|
|
115
|
+
} | {
|
|
116
|
+
method: "eth_getTransactionCount";
|
|
117
|
+
params: [address: string, block: string];
|
|
118
|
+
};
|
|
119
|
+
type GenLayerClient<TSimulatorChain extends SimulatorChain> = Omit<Client<Transport, TSimulatorChain>, "transport" | "getTransaction" | "readContract"> & Omit<PublicActions<Transport, TSimulatorChain>, "readContract" | "getTransaction" | "waitForTransactionReceipt"> & {
|
|
120
|
+
request: Client<Transport, TSimulatorChain>["request"] & {
|
|
121
|
+
<TMethod extends GenLayerMethod>(args: Extract<GenLayerMethod, {
|
|
122
|
+
method: TMethod["method"];
|
|
123
|
+
}>): Promise<unknown>;
|
|
124
|
+
};
|
|
125
|
+
readContract: <RawReturn extends boolean | undefined>(args: {
|
|
126
|
+
account?: Account;
|
|
127
|
+
address: Address;
|
|
128
|
+
functionName: string;
|
|
129
|
+
stateStatus?: TransactionStatus;
|
|
130
|
+
args?: CalldataEncodable[];
|
|
131
|
+
kwargs?: Map<string, CalldataEncodable> | {
|
|
132
|
+
[key: string]: CalldataEncodable;
|
|
133
|
+
};
|
|
134
|
+
rawReturn?: RawReturn;
|
|
135
|
+
}) => Promise<RawReturn extends true ? `0x${string}` : CalldataEncodable>;
|
|
136
|
+
writeContract: (args: {
|
|
137
|
+
account?: Account;
|
|
138
|
+
address: Address;
|
|
139
|
+
functionName: string;
|
|
140
|
+
args?: CalldataEncodable[];
|
|
141
|
+
kwargs?: Map<string, CalldataEncodable> | {
|
|
142
|
+
[key: string]: CalldataEncodable;
|
|
143
|
+
};
|
|
144
|
+
value: bigint;
|
|
145
|
+
leaderOnly?: boolean;
|
|
146
|
+
}) => Promise<any>;
|
|
147
|
+
deployContract: (args: {
|
|
148
|
+
account?: Account;
|
|
149
|
+
code: string | Uint8Array;
|
|
150
|
+
args?: CalldataEncodable[];
|
|
151
|
+
kwargs?: Map<string, CalldataEncodable> | {
|
|
152
|
+
[key: string]: CalldataEncodable;
|
|
153
|
+
};
|
|
154
|
+
leaderOnly?: boolean;
|
|
155
|
+
}) => Promise<`0x${string}`>;
|
|
156
|
+
getTransaction: (args: {
|
|
157
|
+
hash: TransactionHash;
|
|
158
|
+
}) => Promise<GenLayerTransaction>;
|
|
159
|
+
getCurrentNonce: (args: {
|
|
160
|
+
address: string;
|
|
161
|
+
}) => Promise<number>;
|
|
162
|
+
waitForTransactionReceipt: (args: {
|
|
163
|
+
hash: TransactionHash;
|
|
164
|
+
status?: TransactionStatus;
|
|
165
|
+
interval?: number;
|
|
166
|
+
retries?: number;
|
|
167
|
+
}) => Promise<GenLayerTransaction>;
|
|
168
|
+
getContractSchema: (address: string) => Promise<ContractSchema>;
|
|
169
|
+
getContractSchemaForCode: (contractCode: string | Uint8Array) => Promise<ContractSchema>;
|
|
170
|
+
};
|
|
171
|
+
|
|
172
|
+
export { type Address as A, type CalldataEncodable as C, type GenLayerClient as G, type MethodDescription as M, type TransactionDataElement$1 as T, CalldataAddress as a, type GenLayerMethod as b, type ContractParamsArraySchemaElement as c, type ContractParamsSchema as d, type ContractMethodBase as e, type ContractMethod as f, type ContractSchema as g, type TransactionHash as h, TransactionStatus as i, type GenLayerTransaction as j, type TransactionDataElement as k };
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
import { S as SimulatorChain } from './chains-BV4Glo-M.cjs';
|
|
2
|
+
import { Client, Transport, PublicActions, Account } from 'viem';
|
|
3
|
+
|
|
4
|
+
type Address = `0x${string}` & {
|
|
5
|
+
length: 42;
|
|
6
|
+
};
|
|
7
|
+
|
|
8
|
+
declare class CalldataAddress {
|
|
9
|
+
bytes: Uint8Array;
|
|
10
|
+
constructor(addr: Uint8Array);
|
|
11
|
+
}
|
|
12
|
+
type CalldataEncodable = null | boolean | CalldataAddress | number | bigint | string | Uint8Array | Array<CalldataEncodable> | Map<string, CalldataEncodable> | {
|
|
13
|
+
[key: string]: CalldataEncodable;
|
|
14
|
+
};
|
|
15
|
+
type MethodDescription = {
|
|
16
|
+
method: string;
|
|
17
|
+
args: Array<CalldataEncodable>;
|
|
18
|
+
};
|
|
19
|
+
type TransactionDataElement$1 = string | number | bigint | boolean | Uint8Array;
|
|
20
|
+
|
|
21
|
+
type TransactionHash = `0x${string}` & {
|
|
22
|
+
length: 66;
|
|
23
|
+
};
|
|
24
|
+
declare enum TransactionStatus {
|
|
25
|
+
PENDING = "PENDING",
|
|
26
|
+
CANCELED = "CANCELED",
|
|
27
|
+
PROPOSING = "PROPOSING",
|
|
28
|
+
COMMITTING = "COMMITTING",
|
|
29
|
+
REVEALING = "REVEALING",
|
|
30
|
+
ACCEPTED = "ACCEPTED",
|
|
31
|
+
FINALIZED = "FINALIZED",
|
|
32
|
+
UNDETERMINED = "UNDETERMINED"
|
|
33
|
+
}
|
|
34
|
+
type GenLayerTransaction = {
|
|
35
|
+
hash: TransactionHash;
|
|
36
|
+
status: TransactionStatus;
|
|
37
|
+
from_address?: string;
|
|
38
|
+
to_address?: string;
|
|
39
|
+
data?: Record<string, unknown>;
|
|
40
|
+
consensus_data?: {
|
|
41
|
+
final: boolean;
|
|
42
|
+
leader_receipt?: {
|
|
43
|
+
calldata: string;
|
|
44
|
+
class_name: string;
|
|
45
|
+
contract_state: string;
|
|
46
|
+
eq_outputs: Record<string, unknown>;
|
|
47
|
+
error: string | null;
|
|
48
|
+
execution_result: string;
|
|
49
|
+
gas_used: number;
|
|
50
|
+
mode: string;
|
|
51
|
+
node_config: Record<string, unknown>;
|
|
52
|
+
pending_transactions: unknown[];
|
|
53
|
+
vote: string;
|
|
54
|
+
};
|
|
55
|
+
validators?: Record<string, unknown>[];
|
|
56
|
+
votes?: Record<string, string>;
|
|
57
|
+
};
|
|
58
|
+
nonce?: number;
|
|
59
|
+
value?: number;
|
|
60
|
+
type?: number;
|
|
61
|
+
gaslimit?: bigint;
|
|
62
|
+
created_at?: Date;
|
|
63
|
+
r?: number;
|
|
64
|
+
s?: number;
|
|
65
|
+
v?: number;
|
|
66
|
+
};
|
|
67
|
+
type TransactionDataElement = string | number | bigint | boolean | Uint8Array;
|
|
68
|
+
|
|
69
|
+
type ContractParamsArraySchemaElement = ContractParamsSchema | {
|
|
70
|
+
$rep: ContractParamsSchema;
|
|
71
|
+
};
|
|
72
|
+
type ContractParamsSchema = "null" | "bool" | "int" | "address" | "string" | "bytes" | "any" | "array" | "dict" | {
|
|
73
|
+
$or: ContractParamsSchema[];
|
|
74
|
+
} | {
|
|
75
|
+
$dict: ContractParamsSchema;
|
|
76
|
+
} | {
|
|
77
|
+
[key: string]: ContractParamsSchema;
|
|
78
|
+
} | ContractParamsArraySchemaElement[];
|
|
79
|
+
interface ContractMethodBase {
|
|
80
|
+
params: [string, ContractParamsSchema][];
|
|
81
|
+
kwparams: {
|
|
82
|
+
[key: string]: ContractParamsSchema;
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
interface ContractMethod extends ContractMethodBase {
|
|
86
|
+
ret: ContractParamsSchema;
|
|
87
|
+
readonly: boolean;
|
|
88
|
+
}
|
|
89
|
+
type ContractSchema = {
|
|
90
|
+
ctor: ContractMethodBase;
|
|
91
|
+
methods: ContractMethod[];
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
type GenLayerMethod = {
|
|
95
|
+
method: "sim_fundAccount";
|
|
96
|
+
params: [address: string, amount: number];
|
|
97
|
+
} | {
|
|
98
|
+
method: "eth_getTransactionByHash";
|
|
99
|
+
params: [hash: TransactionHash];
|
|
100
|
+
} | {
|
|
101
|
+
method: "eth_call";
|
|
102
|
+
params: [requestParams: any, blockNumberOrHash: string];
|
|
103
|
+
} | {
|
|
104
|
+
method: "eth_sendRawTransaction";
|
|
105
|
+
params: [signedTransaction: string];
|
|
106
|
+
} | {
|
|
107
|
+
method: "gen_getContractSchema";
|
|
108
|
+
params: [address: string];
|
|
109
|
+
} | {
|
|
110
|
+
method: "gen_getContractSchemaForCode";
|
|
111
|
+
params: [contractCode: string];
|
|
112
|
+
} | {
|
|
113
|
+
method: "sim_getTransactionsForAddress";
|
|
114
|
+
params: [address: string, filter?: "all" | "from" | "to"];
|
|
115
|
+
} | {
|
|
116
|
+
method: "eth_getTransactionCount";
|
|
117
|
+
params: [address: string, block: string];
|
|
118
|
+
};
|
|
119
|
+
type GenLayerClient<TSimulatorChain extends SimulatorChain> = Omit<Client<Transport, TSimulatorChain>, "transport" | "getTransaction" | "readContract"> & Omit<PublicActions<Transport, TSimulatorChain>, "readContract" | "getTransaction" | "waitForTransactionReceipt"> & {
|
|
120
|
+
request: Client<Transport, TSimulatorChain>["request"] & {
|
|
121
|
+
<TMethod extends GenLayerMethod>(args: Extract<GenLayerMethod, {
|
|
122
|
+
method: TMethod["method"];
|
|
123
|
+
}>): Promise<unknown>;
|
|
124
|
+
};
|
|
125
|
+
readContract: <RawReturn extends boolean | undefined>(args: {
|
|
126
|
+
account?: Account;
|
|
127
|
+
address: Address;
|
|
128
|
+
functionName: string;
|
|
129
|
+
stateStatus?: TransactionStatus;
|
|
130
|
+
args?: CalldataEncodable[];
|
|
131
|
+
kwargs?: Map<string, CalldataEncodable> | {
|
|
132
|
+
[key: string]: CalldataEncodable;
|
|
133
|
+
};
|
|
134
|
+
rawReturn?: RawReturn;
|
|
135
|
+
}) => Promise<RawReturn extends true ? `0x${string}` : CalldataEncodable>;
|
|
136
|
+
writeContract: (args: {
|
|
137
|
+
account?: Account;
|
|
138
|
+
address: Address;
|
|
139
|
+
functionName: string;
|
|
140
|
+
args?: CalldataEncodable[];
|
|
141
|
+
kwargs?: Map<string, CalldataEncodable> | {
|
|
142
|
+
[key: string]: CalldataEncodable;
|
|
143
|
+
};
|
|
144
|
+
value: bigint;
|
|
145
|
+
leaderOnly?: boolean;
|
|
146
|
+
}) => Promise<any>;
|
|
147
|
+
deployContract: (args: {
|
|
148
|
+
account?: Account;
|
|
149
|
+
code: string | Uint8Array;
|
|
150
|
+
args?: CalldataEncodable[];
|
|
151
|
+
kwargs?: Map<string, CalldataEncodable> | {
|
|
152
|
+
[key: string]: CalldataEncodable;
|
|
153
|
+
};
|
|
154
|
+
leaderOnly?: boolean;
|
|
155
|
+
}) => Promise<`0x${string}`>;
|
|
156
|
+
getTransaction: (args: {
|
|
157
|
+
hash: TransactionHash;
|
|
158
|
+
}) => Promise<GenLayerTransaction>;
|
|
159
|
+
getCurrentNonce: (args: {
|
|
160
|
+
address: string;
|
|
161
|
+
}) => Promise<number>;
|
|
162
|
+
waitForTransactionReceipt: (args: {
|
|
163
|
+
hash: TransactionHash;
|
|
164
|
+
status?: TransactionStatus;
|
|
165
|
+
interval?: number;
|
|
166
|
+
retries?: number;
|
|
167
|
+
}) => Promise<GenLayerTransaction>;
|
|
168
|
+
getContractSchema: (address: string) => Promise<ContractSchema>;
|
|
169
|
+
getContractSchemaForCode: (contractCode: string | Uint8Array) => Promise<ContractSchema>;
|
|
170
|
+
};
|
|
171
|
+
|
|
172
|
+
export { type Address as A, type CalldataEncodable as C, type GenLayerClient as G, type MethodDescription as M, type TransactionDataElement$1 as T, CalldataAddress as a, type GenLayerMethod as b, type ContractParamsArraySchemaElement as c, type ContractParamsSchema as d, type ContractMethodBase as e, type ContractMethod as f, type ContractSchema as g, type TransactionHash as h, TransactionStatus as i, type GenLayerTransaction as j, type TransactionDataElement as k };
|