@xyo-network/blocknative-ethereum-gas-plugin 4.1.1 → 4.2.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/neutral/index.d.ts +5 -24
- package/package.json +13 -14
package/dist/neutral/index.d.ts
CHANGED
|
@@ -1,24 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
type EthereumGasBlocknativeWitnessConfigSchema = 'network.xyo.blockchain.ethereum.gas.blocknative.witness.config';
|
|
8
|
-
declare const EthereumGasBlocknativeWitnessConfigSchema: EthereumGasBlocknativeWitnessConfigSchema;
|
|
9
|
-
|
|
10
|
-
type EthereumGasBlocknativeWitnessConfig = TimestampWitnessConfig<{
|
|
11
|
-
schema: EthereumGasBlocknativeWitnessConfigSchema;
|
|
12
|
-
}>;
|
|
13
|
-
|
|
14
|
-
type EthereumGasBlocknativeWitnessParams = TimestampWitnessParams<AnyConfigSchema<EthereumGasBlocknativeWitnessConfig>>;
|
|
15
|
-
declare class EthereumGasBlocknativeWitness extends AbstractWitness<EthereumGasBlocknativeWitnessParams> {
|
|
16
|
-
static readonly configSchemas: Schema[];
|
|
17
|
-
static readonly defaultConfigSchema: Schema;
|
|
18
|
-
protected observeHandler(): Promise<Payload[]>;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
declare const EthereumGasBlocknativePlugin: () => _xyo_network_payloadset_plugin.PayloadSetWitnessPlugin<EthereumGasBlocknativeWitness>;
|
|
22
|
-
|
|
23
|
-
export { EthereumGasBlocknativePlugin, EthereumGasBlocknativeWitness, EthereumGasBlocknativeWitnessConfigSchema, EthereumGasBlocknativePlugin as default };
|
|
24
|
-
export type { EthereumGasBlocknativeWitnessConfig, EthereumGasBlocknativeWitnessParams };
|
|
1
|
+
export * from './Config.ts';
|
|
2
|
+
export { EthereumGasBlocknativePlugin as default, EthereumGasBlocknativePlugin } from './Plugin.ts';
|
|
3
|
+
export * from './Schema.ts';
|
|
4
|
+
export * from './Witness.ts';
|
|
5
|
+
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/blocknative-ethereum-gas-plugin",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -29,21 +29,20 @@
|
|
|
29
29
|
"module": "dist/neutral/index.mjs",
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@xylabs/axios": "^4.
|
|
33
|
-
"@xyo-network/abstract-witness": "^4.
|
|
34
|
-
"@xyo-network/blocknative-ethereum-gas-payload-plugin": "^4.
|
|
35
|
-
"@xyo-network/module-model": "^4.
|
|
36
|
-
"@xyo-network/payload-builder": "^4.
|
|
37
|
-
"@xyo-network/payload-model": "^4.
|
|
38
|
-
"@xyo-network/payloadset-plugin": "^4.
|
|
39
|
-
"@xyo-network/witness-timestamp": "^4.
|
|
32
|
+
"@xylabs/axios": "^4.15.1",
|
|
33
|
+
"@xyo-network/abstract-witness": "^4.3.0",
|
|
34
|
+
"@xyo-network/blocknative-ethereum-gas-payload-plugin": "^4.2.0",
|
|
35
|
+
"@xyo-network/module-model": "^4.3.0",
|
|
36
|
+
"@xyo-network/payload-builder": "^4.3.0",
|
|
37
|
+
"@xyo-network/payload-model": "^4.3.0",
|
|
38
|
+
"@xyo-network/payloadset-plugin": "^4.3.0",
|
|
39
|
+
"@xyo-network/witness-timestamp": "^4.3.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@xylabs/ts-scripts-yarn3": "^7.0.
|
|
43
|
-
"@xylabs/tsconfig": "^7.0.
|
|
44
|
-
"@xylabs/vitest-extended": "^4.
|
|
45
|
-
"@xyo-network/payload-wrapper": "^4.
|
|
46
|
-
"knip": "^5.62.0",
|
|
42
|
+
"@xylabs/ts-scripts-yarn3": "^7.0.1",
|
|
43
|
+
"@xylabs/tsconfig": "^7.0.1",
|
|
44
|
+
"@xylabs/vitest-extended": "^4.15.1",
|
|
45
|
+
"@xyo-network/payload-wrapper": "^4.3.0",
|
|
47
46
|
"typescript": "^5.8.3",
|
|
48
47
|
"vitest": "^3.2.4"
|
|
49
48
|
},
|