@xyo-network/etherscan-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.
@@ -1,24 +1,5 @@
1
- import { WitnessConfig, WitnessParams } from '@xyo-network/witness-model';
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 EthereumGasEtherscanWitnessConfigSchema = 'network.xyo.blockchain.ethereum.gas.etherscan.witness.config';
8
- declare const EthereumGasEtherscanWitnessConfigSchema: EthereumGasEtherscanWitnessConfigSchema;
9
-
10
- type EthereumGasEtherscanWitnessConfig = WitnessConfig<{
11
- apiKey: string;
12
- schema: EthereumGasEtherscanWitnessConfigSchema;
13
- }>;
14
-
15
- declare class EthereumGasEtherscanWitness extends AbstractWitness<WitnessParams<AnyConfigSchema<EthereumGasEtherscanWitnessConfig>>> {
16
- static readonly configSchemas: Schema[];
17
- static readonly defaultConfigSchema: Schema;
18
- protected observeHandler(): Promise<Payload[]>;
19
- }
20
-
21
- declare const EthereumGasEtherscanPlugin: () => _xyo_network_payloadset_plugin.PayloadSetWitnessPlugin<EthereumGasEtherscanWitness>;
22
-
23
- export { EthereumGasEtherscanPlugin, EthereumGasEtherscanWitness, EthereumGasEtherscanWitnessConfigSchema, EthereumGasEtherscanPlugin as default };
24
- export type { EthereumGasEtherscanWitnessConfig };
1
+ export * from './Config.ts';
2
+ export { EthereumGasEtherscanPlugin as default, EthereumGasEtherscanPlugin } 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/etherscan-ethereum-gas-plugin",
3
- "version": "4.1.1",
3
+ "version": "4.2.0",
4
4
  "description": "Typescript/Javascript Plugins for XYO Platform",
5
5
  "homepage": "https://xyo.network",
6
6
  "bugs": {
@@ -29,22 +29,21 @@
29
29
  "module": "dist/neutral/index.mjs",
30
30
  "types": "dist/neutral/index.d.ts",
31
31
  "dependencies": {
32
- "@xylabs/assert": "^4.13.23",
33
- "@xylabs/axios": "^4.13.23",
34
- "@xyo-network/abstract-witness": "^4.1.7",
35
- "@xyo-network/etherscan-ethereum-gas-payload-plugin": "^4.1.1",
36
- "@xyo-network/module-model": "^4.1.7",
37
- "@xyo-network/payload-builder": "^4.1.7",
38
- "@xyo-network/payload-model": "^4.1.7",
39
- "@xyo-network/payloadset-plugin": "^4.1.7",
40
- "@xyo-network/witness-model": "^4.1.7"
32
+ "@xylabs/assert": "^4.15.1",
33
+ "@xylabs/axios": "^4.15.1",
34
+ "@xyo-network/abstract-witness": "^4.3.0",
35
+ "@xyo-network/etherscan-ethereum-gas-payload-plugin": "^4.2.0",
36
+ "@xyo-network/module-model": "^4.3.0",
37
+ "@xyo-network/payload-builder": "^4.3.0",
38
+ "@xyo-network/payload-model": "^4.3.0",
39
+ "@xyo-network/payloadset-plugin": "^4.3.0",
40
+ "@xyo-network/witness-model": "^4.3.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@xylabs/ts-scripts-yarn3": "^7.0.0-rc.24",
44
- "@xylabs/tsconfig": "^7.0.0-rc.24",
45
- "@xylabs/vitest-extended": "^4.13.23",
46
- "@xyo-network/payload-wrapper": "^4.1.7",
47
- "knip": "^5.62.0",
43
+ "@xylabs/ts-scripts-yarn3": "^7.0.1",
44
+ "@xylabs/tsconfig": "^7.0.1",
45
+ "@xylabs/vitest-extended": "^4.15.1",
46
+ "@xyo-network/payload-wrapper": "^4.3.0",
48
47
  "typescript": "^5.8.3",
49
48
  "vitest": "^3.2.4"
50
49
  },