@xyo-network/blocknative-ethereum-gas-plugin 4.1.0 → 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.
@@ -1,24 +1,5 @@
1
- import { TimestampWitnessConfig, TimestampWitnessParams } from '@xyo-network/witness-timestamp';
2
- import * as _xyo_network_payloadset_plugin from '@xyo-network/payloadset-plugin';
3
- import { AbstractWitness } from '@xyo-network/abstract-witness';
4
- import { AnyConfigSchema } from '@xyo-network/module-model';
5
- import { Schema, Payload } from '@xyo-network/payload-model';
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.1.0",
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.13.15",
33
- "@xyo-network/abstract-witness": "^4.1.1",
34
- "@xyo-network/blocknative-ethereum-gas-payload-plugin": "^4.1.0",
35
- "@xyo-network/module-model": "^4.1.1",
36
- "@xyo-network/payload-builder": "^4.1.1",
37
- "@xyo-network/payload-model": "^4.1.1",
38
- "@xyo-network/payloadset-plugin": "^4.1.1",
39
- "@xyo-network/witness-timestamp": "^4.1.1"
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.0-rc.24",
43
- "@xylabs/tsconfig": "^7.0.0-rc.24",
44
- "@xylabs/vitest-extended": "^4.13.15",
45
- "@xyo-network/payload-wrapper": "^4.1.1",
46
- "knip": "^5.61.3",
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
  },