@xyo-network/ethers-ethereum-gas-plugin 2.43.9 → 2.43.11

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.
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -11,16 +11,16 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "@ethersproject/providers": "^5.7.2",
14
- "@xylabs/assert": "^2.6.15",
15
- "@xyo-network/ethers-ethereum-gas-payload-plugin": "^2.43.9",
16
- "@xyo-network/module": "^2.43.9",
17
- "@xyo-network/payload-builder": "^2.43.9",
18
- "@xyo-network/payload-model": "^2.43.9",
19
- "@xyo-network/payloadset-plugin": "^2.43.9",
20
- "@xyo-network/witness": "^2.43.9"
14
+ "@xylabs/assert": "^2.6.16",
15
+ "@xyo-network/ethers-ethereum-gas-payload-plugin": "^2.43.11",
16
+ "@xyo-network/module": "^2.43.11",
17
+ "@xyo-network/payload-builder": "^2.43.11",
18
+ "@xyo-network/payload-model": "^2.43.11",
19
+ "@xyo-network/payloadset-plugin": "^2.43.11",
20
+ "@xyo-network/witness": "^2.43.11"
21
21
  },
22
22
  "devDependencies": {
23
- "@xylabs/ts-scripts-yarn3": "^2.12.21"
23
+ "@xylabs/ts-scripts-yarn3": "^2.12.25"
24
24
  },
25
25
  "description": "Primary SDK for using XYO Protocol 2.0",
26
26
  "browser": "dist/esm/index.js",
@@ -54,6 +54,6 @@
54
54
  "url": "https://github.com/XYOracleNetwork/sdk-xyo-client-js.git"
55
55
  },
56
56
  "sideEffects": false,
57
- "types": "dist/esm/index.d.ts",
58
- "version": "2.43.9"
57
+ "types": "dist/types/index.d.ts",
58
+ "version": "2.43.11"
59
59
  }
@@ -1,6 +0,0 @@
1
- import { XyoWitnessConfig } from '@xyo-network/witness';
2
- import { XyoEthereumGasEthersWitnessConfigSchema } from './Schema';
3
- export type XyoEthereumGasEthersWitnessConfig = XyoWitnessConfig<{
4
- schema: XyoEthereumGasEthersWitnessConfigSchema;
5
- }>;
6
- //# sourceMappingURL=Config.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Config.d.ts","sourceRoot":"","sources":["../../src/Config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AAEvD,OAAO,EAAE,uCAAuC,EAAE,MAAM,UAAU,CAAA;AAElE,MAAM,MAAM,iCAAiC,GAAG,gBAAgB,CAAC;IAC/D,MAAM,EAAE,uCAAuC,CAAA;CAChD,CAAC,CAAA"}
@@ -1,4 +0,0 @@
1
- import { PayloadSetWitnessPlugin } from '@xyo-network/payloadset-plugin';
2
- import { XyoEthereumGasEthersWitnessParams } from './Witness';
3
- export declare const XyoEthereumGasEthersPlugin: () => PayloadSetWitnessPlugin<XyoEthereumGasEthersWitnessParams>;
4
- //# sourceMappingURL=Plugin.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAEA,OAAO,EAA0B,uBAAuB,EAAE,MAAM,gCAAgC,CAAA;AAEhG,OAAO,EAA+B,iCAAiC,EAAE,MAAM,WAAW,CAAA;AAE1F,eAAO,MAAM,0BAA0B,kEASpC,CAAA"}
@@ -1,3 +0,0 @@
1
- export type XyoEthereumGasEthersWitnessConfigSchema = 'network.xyo.blockchain.ethereum.gas.ethers.witness.config';
2
- export declare const XyoEthereumGasEthersWitnessConfigSchema: XyoEthereumGasEthersWitnessConfigSchema;
3
- //# sourceMappingURL=Schema.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Schema.d.ts","sourceRoot":"","sources":["../../src/Schema.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,uCAAuC,GAAG,2DAA2D,CAAA;AACjH,eAAO,MAAM,uCAAuC,EAAE,uCACO,CAAA"}
@@ -1,16 +0,0 @@
1
- import { Provider } from '@ethersproject/providers';
2
- import { ModuleParams } from '@xyo-network/module';
3
- import { XyoPayload } from '@xyo-network/payload-model';
4
- import { TimestampWitness } from '@xyo-network/witness';
5
- import { XyoEthereumGasEthersWitnessConfig } from './Config';
6
- export interface XyoEthereumGasEthersWitnessParams extends ModuleParams<XyoEthereumGasEthersWitnessConfig> {
7
- provider: Provider;
8
- }
9
- export declare class XyoEthereumGasEthersWitness extends TimestampWitness<XyoEthereumGasEthersWitnessConfig> {
10
- static configSchema: "network.xyo.blockchain.ethereum.gas.ethers.witness.config";
11
- protected provider?: Provider;
12
- protected constructor(params: XyoEthereumGasEthersWitnessParams);
13
- static create(params?: XyoEthereumGasEthersWitnessParams): Promise<XyoEthereumGasEthersWitness>;
14
- observe(): Promise<XyoPayload[]>;
15
- }
16
- //# sourceMappingURL=Witness.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Witness.d.ts","sourceRoot":"","sources":["../../src/Witness.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAA;AAGnD,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAA;AAElD,OAAO,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAA;AACvD,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAA;AAEvD,OAAO,EAAE,iCAAiC,EAAE,MAAM,UAAU,CAAA;AAI5D,MAAM,WAAW,iCAAkC,SAAQ,YAAY,CAAC,iCAAiC,CAAC;IACxG,QAAQ,EAAE,QAAQ,CAAA;CACnB;AAED,qBAAa,2BAA4B,SAAQ,gBAAgB,CAAC,iCAAiC,CAAC;IAClG,OAAgB,YAAY,8DAA0C;IAEtE,SAAS,CAAC,QAAQ,CAAC,EAAE,QAAQ,CAAA;IAE7B,SAAS,aAAa,MAAM,EAAE,iCAAiC;WAKzC,MAAM,CAAC,MAAM,CAAC,EAAE,iCAAiC,GAAG,OAAO,CAAC,2BAA2B,CAAC;IAI/F,OAAO,IAAI,OAAO,CAAC,UAAU,EAAE,CAAC;CAMhD"}
@@ -1,7 +0,0 @@
1
- import { XyoEthereumGasEthersPlugin } from './Plugin';
2
- export * from './Config';
3
- export * from './Schema';
4
- export * from './Witness';
5
- export { XyoEthereumGasEthersPlugin };
6
- export default XyoEthereumGasEthersPlugin;
7
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,0BAA0B,EAAE,MAAM,UAAU,CAAA;AAErD,cAAc,UAAU,CAAA;AACxB,cAAc,UAAU,CAAA;AACxB,cAAc,WAAW,CAAA;AAEzB,OAAO,EAAE,0BAA0B,EAAE,CAAA;AAGrC,eAAe,0BAA0B,CAAA"}
@@ -1,4 +0,0 @@
1
- import { Provider } from '@ethersproject/providers';
2
- import { EthereumGasEthersResponse } from '@xyo-network/ethers-ethereum-gas-payload-plugin';
3
- export declare const getGasFromEthers: (provider: Provider) => Promise<EthereumGasEthersResponse>;
4
- //# sourceMappingURL=getGasFromEthers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getGasFromEthers.d.ts","sourceRoot":"","sources":["../../../src/lib/getGasFromEthers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,0BAA0B,CAAA;AACnD,OAAO,EAAE,yBAAyB,EAAE,MAAM,iDAAiD,CAAA;AAM3F,eAAO,MAAM,gBAAgB,aAAoB,QAAQ,KAAG,QAAQ,yBAAyB,CAU5F,CAAA"}
@@ -1,2 +0,0 @@
1
- export * from './getGasFromEthers';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/lib/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAA"}