@xyo-network/gas-price-plugin 2.89.0 → 2.89.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/dist/browser/Plugin.d.cts +2 -34
- package/dist/browser/Plugin.d.cts.map +1 -1
- package/dist/browser/Plugin.d.mts +2 -34
- package/dist/browser/Plugin.d.mts.map +1 -1
- package/dist/browser/Plugin.d.ts +2 -34
- package/dist/browser/Plugin.d.ts.map +1 -1
- package/dist/browser/lib/identities/isEthereumGasBlocknativePayload.d.cts +1 -1
- package/dist/browser/lib/identities/isEthereumGasBlocknativePayload.d.mts +1 -1
- package/dist/browser/lib/identities/isEthereumGasBlocknativePayload.d.ts +1 -1
- package/dist/browser/lib/identities/isEthereumGasEtherchainV2Payload.d.cts +1 -1
- package/dist/browser/lib/identities/isEthereumGasEtherchainV2Payload.d.mts +1 -1
- package/dist/browser/lib/identities/isEthereumGasEtherchainV2Payload.d.ts +1 -1
- package/dist/browser/lib/identities/isEthereumGasEthersPayload.d.cts +1 -1
- package/dist/browser/lib/identities/isEthereumGasEthersPayload.d.mts +1 -1
- package/dist/browser/lib/identities/isEthereumGasEthersPayload.d.ts +1 -1
- package/dist/browser/lib/identities/isEthereumGasEtherscanPayload.d.cts +1 -1
- package/dist/browser/lib/identities/isEthereumGasEtherscanPayload.d.mts +1 -1
- package/dist/browser/lib/identities/isEthereumGasEtherscanPayload.d.ts +1 -1
- package/dist/browser/lib/identities/isEthereumGasEthgasstationPayload.d.cts +1 -1
- package/dist/browser/lib/identities/isEthereumGasEthgasstationPayload.d.mts +1 -1
- package/dist/browser/lib/identities/isEthereumGasEthgasstationPayload.d.ts +1 -1
- package/dist/node/Plugin.d.cts +2 -34
- package/dist/node/Plugin.d.cts.map +1 -1
- package/dist/node/Plugin.d.mts +2 -34
- package/dist/node/Plugin.d.mts.map +1 -1
- package/dist/node/Plugin.d.ts +2 -34
- package/dist/node/Plugin.d.ts.map +1 -1
- package/dist/node/lib/identities/isEthereumGasBlocknativePayload.d.cts +1 -1
- package/dist/node/lib/identities/isEthereumGasBlocknativePayload.d.mts +1 -1
- package/dist/node/lib/identities/isEthereumGasBlocknativePayload.d.ts +1 -1
- package/dist/node/lib/identities/isEthereumGasEtherchainV2Payload.d.cts +1 -1
- package/dist/node/lib/identities/isEthereumGasEtherchainV2Payload.d.mts +1 -1
- package/dist/node/lib/identities/isEthereumGasEtherchainV2Payload.d.ts +1 -1
- package/dist/node/lib/identities/isEthereumGasEthersPayload.d.cts +1 -1
- package/dist/node/lib/identities/isEthereumGasEthersPayload.d.mts +1 -1
- package/dist/node/lib/identities/isEthereumGasEthersPayload.d.ts +1 -1
- package/dist/node/lib/identities/isEthereumGasEtherscanPayload.d.cts +1 -1
- package/dist/node/lib/identities/isEthereumGasEtherscanPayload.d.mts +1 -1
- package/dist/node/lib/identities/isEthereumGasEtherscanPayload.d.ts +1 -1
- package/dist/node/lib/identities/isEthereumGasEthgasstationPayload.d.cts +1 -1
- package/dist/node/lib/identities/isEthereumGasEthgasstationPayload.d.mts +1 -1
- package/dist/node/lib/identities/isEthereumGasEthgasstationPayload.d.ts +1 -1
- package/package.json +22 -22
|
@@ -1,43 +1,11 @@
|
|
|
1
1
|
import { EthereumGasDiviner } from './Diviner';
|
|
2
2
|
export declare const EthereumGasPlugin: () => import("@xyo-network/payloadset-plugin").PayloadSetDivinerPlugin<EthereumGasDiviner<import("@xylabs/object").BaseParamsFields & {
|
|
3
3
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
4
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
5
|
-
readonly archivist?: string | undefined;
|
|
6
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
7
|
-
readonly name?: string | undefined;
|
|
8
|
-
readonly paging?: Record<string, {
|
|
9
|
-
size?: number | undefined;
|
|
10
|
-
}> | undefined;
|
|
11
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
4
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
12
5
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
13
|
-
readonly security?: {
|
|
14
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
15
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
16
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
17
|
-
} | undefined;
|
|
18
|
-
readonly sign?: boolean | undefined;
|
|
19
|
-
readonly storeQueries?: boolean | undefined;
|
|
20
|
-
readonly timestamp?: boolean | undefined;
|
|
21
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
22
|
-
readonly archivist?: string | undefined;
|
|
23
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
24
|
-
readonly name?: string | undefined;
|
|
25
|
-
readonly paging?: Record<string, {
|
|
26
|
-
size?: number | undefined;
|
|
27
|
-
}> | undefined;
|
|
28
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
29
|
-
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
30
|
-
readonly security?: {
|
|
31
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
32
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
33
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
34
|
-
} | undefined;
|
|
35
|
-
readonly sign?: boolean | undefined;
|
|
36
|
-
readonly storeQueries?: boolean | undefined;
|
|
37
|
-
readonly timestamp?: boolean | undefined;
|
|
38
6
|
} & {
|
|
39
7
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
40
|
-
} & {
|
|
8
|
+
}, "schema"> & {
|
|
41
9
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
42
10
|
}, "schema"> & {
|
|
43
11
|
schema: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AAE9C,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AAE9C,eAAO,MAAM,iBAAiB;;;;;;;;;;;;GAQ3B,CAAA"}
|
|
@@ -1,43 +1,11 @@
|
|
|
1
1
|
import { EthereumGasDiviner } from './Diviner';
|
|
2
2
|
export declare const EthereumGasPlugin: () => import("@xyo-network/payloadset-plugin").PayloadSetDivinerPlugin<EthereumGasDiviner<import("@xylabs/object").BaseParamsFields & {
|
|
3
3
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
4
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
5
|
-
readonly archivist?: string | undefined;
|
|
6
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
7
|
-
readonly name?: string | undefined;
|
|
8
|
-
readonly paging?: Record<string, {
|
|
9
|
-
size?: number | undefined;
|
|
10
|
-
}> | undefined;
|
|
11
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
4
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
12
5
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
13
|
-
readonly security?: {
|
|
14
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
15
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
16
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
17
|
-
} | undefined;
|
|
18
|
-
readonly sign?: boolean | undefined;
|
|
19
|
-
readonly storeQueries?: boolean | undefined;
|
|
20
|
-
readonly timestamp?: boolean | undefined;
|
|
21
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
22
|
-
readonly archivist?: string | undefined;
|
|
23
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
24
|
-
readonly name?: string | undefined;
|
|
25
|
-
readonly paging?: Record<string, {
|
|
26
|
-
size?: number | undefined;
|
|
27
|
-
}> | undefined;
|
|
28
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
29
|
-
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
30
|
-
readonly security?: {
|
|
31
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
32
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
33
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
34
|
-
} | undefined;
|
|
35
|
-
readonly sign?: boolean | undefined;
|
|
36
|
-
readonly storeQueries?: boolean | undefined;
|
|
37
|
-
readonly timestamp?: boolean | undefined;
|
|
38
6
|
} & {
|
|
39
7
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
40
|
-
} & {
|
|
8
|
+
}, "schema"> & {
|
|
41
9
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
42
10
|
}, "schema"> & {
|
|
43
11
|
schema: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AAE9C,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AAE9C,eAAO,MAAM,iBAAiB;;;;;;;;;;;;GAQ3B,CAAA"}
|
package/dist/browser/Plugin.d.ts
CHANGED
|
@@ -1,43 +1,11 @@
|
|
|
1
1
|
import { EthereumGasDiviner } from './Diviner';
|
|
2
2
|
export declare const EthereumGasPlugin: () => import("@xyo-network/payloadset-plugin").PayloadSetDivinerPlugin<EthereumGasDiviner<import("@xylabs/object").BaseParamsFields & {
|
|
3
3
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
4
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
5
|
-
readonly archivist?: string | undefined;
|
|
6
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
7
|
-
readonly name?: string | undefined;
|
|
8
|
-
readonly paging?: Record<string, {
|
|
9
|
-
size?: number | undefined;
|
|
10
|
-
}> | undefined;
|
|
11
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
4
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
12
5
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
13
|
-
readonly security?: {
|
|
14
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
15
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
16
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
17
|
-
} | undefined;
|
|
18
|
-
readonly sign?: boolean | undefined;
|
|
19
|
-
readonly storeQueries?: boolean | undefined;
|
|
20
|
-
readonly timestamp?: boolean | undefined;
|
|
21
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
22
|
-
readonly archivist?: string | undefined;
|
|
23
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
24
|
-
readonly name?: string | undefined;
|
|
25
|
-
readonly paging?: Record<string, {
|
|
26
|
-
size?: number | undefined;
|
|
27
|
-
}> | undefined;
|
|
28
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
29
|
-
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
30
|
-
readonly security?: {
|
|
31
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
32
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
33
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
34
|
-
} | undefined;
|
|
35
|
-
readonly sign?: boolean | undefined;
|
|
36
|
-
readonly storeQueries?: boolean | undefined;
|
|
37
|
-
readonly timestamp?: boolean | undefined;
|
|
38
6
|
} & {
|
|
39
7
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
40
|
-
} & {
|
|
8
|
+
}, "schema"> & {
|
|
41
9
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
42
10
|
}, "schema"> & {
|
|
43
11
|
schema: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AAE9C,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AAE9C,eAAO,MAAM,iBAAiB;;;;;;;;;;;;GAQ3B,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasBlocknativePayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasBlocknativePayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/blocknative-ethereum-gas-payload-plugin").EthereumGasBlocknativeResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.blocknative";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasBlocknativePayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasBlocknativePayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasBlocknativePayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/blocknative-ethereum-gas-payload-plugin").EthereumGasBlocknativeResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.blocknative";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasBlocknativePayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasBlocknativePayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasBlocknativePayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/blocknative-ethereum-gas-payload-plugin").EthereumGasBlocknativeResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.blocknative";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasBlocknativePayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEtherchainV2Payload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEtherchainV2Payload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins").EthereumGasEtherchainV2Response & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.etherchain.v2";
|
|
4
4
|
timestamp: number;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEtherchainV2Payload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEtherchainV2Payload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins").EthereumGasEtherchainV2Response & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.etherchain.v2";
|
|
4
4
|
timestamp: number;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEtherchainV2Payload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEtherchainV2Payload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins").EthereumGasEtherchainV2Response & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.etherchain.v2";
|
|
4
4
|
timestamp: number;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEthersPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEthersPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/ethers-ethereum-gas-payload-plugin").EthereumGasEthersResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.ethers";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasEthersPayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEthersPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEthersPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/ethers-ethereum-gas-payload-plugin").EthereumGasEthersResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.ethers";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasEthersPayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEthersPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEthersPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/ethers-ethereum-gas-payload-plugin").EthereumGasEthersResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.ethers";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasEthersPayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEtherscanPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEtherscanPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/etherscan-ethereum-gas-payload-plugin").EthereumGasEtherscanResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.etherscan";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasEtherscanPayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEtherscanPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEtherscanPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/etherscan-ethereum-gas-payload-plugin").EthereumGasEtherscanResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.etherscan";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasEtherscanPayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEtherscanPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEtherscanPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/etherscan-ethereum-gas-payload-plugin").EthereumGasEtherscanResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.etherscan";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasEtherscanPayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEthgasstationPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEthgasstationPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/ethgasstation-ethereum-gas-payload-plugin").EthereumGasEthgasstationResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.ethgasstation";
|
|
4
4
|
timestamp: number;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEthgasstationPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEthgasstationPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/ethgasstation-ethereum-gas-payload-plugin").EthereumGasEthgasstationResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.ethgasstation";
|
|
4
4
|
timestamp: number;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEthgasstationPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEthgasstationPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/ethgasstation-ethereum-gas-payload-plugin").EthereumGasEthgasstationResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.ethgasstation";
|
|
4
4
|
timestamp: number;
|
|
5
5
|
};
|
package/dist/node/Plugin.d.cts
CHANGED
|
@@ -1,43 +1,11 @@
|
|
|
1
1
|
import { EthereumGasDiviner } from './Diviner';
|
|
2
2
|
export declare const EthereumGasPlugin: () => import("@xyo-network/payloadset-plugin").PayloadSetDivinerPlugin<EthereumGasDiviner<import("@xylabs/object").BaseParamsFields & {
|
|
3
3
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
4
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
5
|
-
readonly archivist?: string | undefined;
|
|
6
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
7
|
-
readonly name?: string | undefined;
|
|
8
|
-
readonly paging?: Record<string, {
|
|
9
|
-
size?: number | undefined;
|
|
10
|
-
}> | undefined;
|
|
11
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
4
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
12
5
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
13
|
-
readonly security?: {
|
|
14
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
15
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
16
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
17
|
-
} | undefined;
|
|
18
|
-
readonly sign?: boolean | undefined;
|
|
19
|
-
readonly storeQueries?: boolean | undefined;
|
|
20
|
-
readonly timestamp?: boolean | undefined;
|
|
21
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
22
|
-
readonly archivist?: string | undefined;
|
|
23
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
24
|
-
readonly name?: string | undefined;
|
|
25
|
-
readonly paging?: Record<string, {
|
|
26
|
-
size?: number | undefined;
|
|
27
|
-
}> | undefined;
|
|
28
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
29
|
-
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
30
|
-
readonly security?: {
|
|
31
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
32
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
33
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
34
|
-
} | undefined;
|
|
35
|
-
readonly sign?: boolean | undefined;
|
|
36
|
-
readonly storeQueries?: boolean | undefined;
|
|
37
|
-
readonly timestamp?: boolean | undefined;
|
|
38
6
|
} & {
|
|
39
7
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
40
|
-
} & {
|
|
8
|
+
}, "schema"> & {
|
|
41
9
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
42
10
|
}, "schema"> & {
|
|
43
11
|
schema: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AAE9C,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AAE9C,eAAO,MAAM,iBAAiB;;;;;;;;;;;;GAQ3B,CAAA"}
|
package/dist/node/Plugin.d.mts
CHANGED
|
@@ -1,43 +1,11 @@
|
|
|
1
1
|
import { EthereumGasDiviner } from './Diviner';
|
|
2
2
|
export declare const EthereumGasPlugin: () => import("@xyo-network/payloadset-plugin").PayloadSetDivinerPlugin<EthereumGasDiviner<import("@xylabs/object").BaseParamsFields & {
|
|
3
3
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
4
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
5
|
-
readonly archivist?: string | undefined;
|
|
6
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
7
|
-
readonly name?: string | undefined;
|
|
8
|
-
readonly paging?: Record<string, {
|
|
9
|
-
size?: number | undefined;
|
|
10
|
-
}> | undefined;
|
|
11
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
4
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
12
5
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
13
|
-
readonly security?: {
|
|
14
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
15
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
16
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
17
|
-
} | undefined;
|
|
18
|
-
readonly sign?: boolean | undefined;
|
|
19
|
-
readonly storeQueries?: boolean | undefined;
|
|
20
|
-
readonly timestamp?: boolean | undefined;
|
|
21
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
22
|
-
readonly archivist?: string | undefined;
|
|
23
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
24
|
-
readonly name?: string | undefined;
|
|
25
|
-
readonly paging?: Record<string, {
|
|
26
|
-
size?: number | undefined;
|
|
27
|
-
}> | undefined;
|
|
28
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
29
|
-
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
30
|
-
readonly security?: {
|
|
31
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
32
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
33
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
34
|
-
} | undefined;
|
|
35
|
-
readonly sign?: boolean | undefined;
|
|
36
|
-
readonly storeQueries?: boolean | undefined;
|
|
37
|
-
readonly timestamp?: boolean | undefined;
|
|
38
6
|
} & {
|
|
39
7
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
40
|
-
} & {
|
|
8
|
+
}, "schema"> & {
|
|
41
9
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
42
10
|
}, "schema"> & {
|
|
43
11
|
schema: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AAE9C,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AAE9C,eAAO,MAAM,iBAAiB;;;;;;;;;;;;GAQ3B,CAAA"}
|
package/dist/node/Plugin.d.ts
CHANGED
|
@@ -1,43 +1,11 @@
|
|
|
1
1
|
import { EthereumGasDiviner } from './Diviner';
|
|
2
2
|
export declare const EthereumGasPlugin: () => import("@xyo-network/payloadset-plugin").PayloadSetDivinerPlugin<EthereumGasDiviner<import("@xylabs/object").BaseParamsFields & {
|
|
3
3
|
account?: import("@xyo-network/account-model").AccountInstance | "random" | undefined;
|
|
4
|
-
config: import("@xyo-network/payload-model").SchemaFields &
|
|
5
|
-
readonly archivist?: string | undefined;
|
|
6
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
7
|
-
readonly name?: string | undefined;
|
|
8
|
-
readonly paging?: Record<string, {
|
|
9
|
-
size?: number | undefined;
|
|
10
|
-
}> | undefined;
|
|
11
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
4
|
+
config: import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & Omit<import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/module-model").ModuleConfigFields & {
|
|
12
5
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
13
|
-
readonly security?: {
|
|
14
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
15
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
16
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
17
|
-
} | undefined;
|
|
18
|
-
readonly sign?: boolean | undefined;
|
|
19
|
-
readonly storeQueries?: boolean | undefined;
|
|
20
|
-
readonly timestamp?: boolean | undefined;
|
|
21
|
-
} & import("@xyo-network/module-model").ArchivingModuleConfig & import("@xyo-network/payload-model").SchemaFields & object & {
|
|
22
|
-
readonly archivist?: string | undefined;
|
|
23
|
-
readonly labels?: import("@xyo-network/module-model").Labels | undefined;
|
|
24
|
-
readonly name?: string | undefined;
|
|
25
|
-
readonly paging?: Record<string, {
|
|
26
|
-
size?: number | undefined;
|
|
27
|
-
}> | undefined;
|
|
28
|
-
readonly retry?: import("@xylabs/retry").RetryConfig | undefined;
|
|
29
|
-
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
30
|
-
readonly security?: {
|
|
31
|
-
readonly allowAnonymous?: boolean | undefined;
|
|
32
|
-
readonly allowed?: Record<string, (Lowercase<string> | import("@xyo-network/module-model").CosigningAddressSet)[]> | undefined;
|
|
33
|
-
readonly disallowed?: Record<string, Lowercase<string>[]> | undefined;
|
|
34
|
-
} | undefined;
|
|
35
|
-
readonly sign?: boolean | undefined;
|
|
36
|
-
readonly storeQueries?: boolean | undefined;
|
|
37
|
-
readonly timestamp?: boolean | undefined;
|
|
38
6
|
} & {
|
|
39
7
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
40
|
-
} & {
|
|
8
|
+
}, "schema"> & {
|
|
41
9
|
schema: "network.xyo.blockchain.ethereum.gas.diviner.config";
|
|
42
10
|
}, "schema"> & {
|
|
43
11
|
schema: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AAE9C,eAAO,MAAM,iBAAiB
|
|
1
|
+
{"version":3,"file":"Plugin.d.ts","sourceRoot":"","sources":["../../src/Plugin.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAA;AAE9C,eAAO,MAAM,iBAAiB;;;;;;;;;;;;GAQ3B,CAAA"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasBlocknativePayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasBlocknativePayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/blocknative-ethereum-gas-payload-plugin").EthereumGasBlocknativeResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.blocknative";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasBlocknativePayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasBlocknativePayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasBlocknativePayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/blocknative-ethereum-gas-payload-plugin").EthereumGasBlocknativeResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.blocknative";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasBlocknativePayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasBlocknativePayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasBlocknativePayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/blocknative-ethereum-gas-payload-plugin").EthereumGasBlocknativeResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.blocknative";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasBlocknativePayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEtherchainV2Payload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEtherchainV2Payload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins").EthereumGasEtherchainV2Response & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.etherchain.v2";
|
|
4
4
|
timestamp: number;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEtherchainV2Payload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEtherchainV2Payload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins").EthereumGasEtherchainV2Response & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.etherchain.v2";
|
|
4
4
|
timestamp: number;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEtherchainV2Payload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEtherchainV2Payload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins").EthereumGasEtherchainV2Response & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.etherchain.v2";
|
|
4
4
|
timestamp: number;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEthersPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEthersPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/ethers-ethereum-gas-payload-plugin").EthereumGasEthersResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.ethers";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasEthersPayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEthersPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEthersPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/ethers-ethereum-gas-payload-plugin").EthereumGasEthersResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.ethers";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasEthersPayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEthersPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEthersPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/ethers-ethereum-gas-payload-plugin").EthereumGasEthersResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.ethers";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasEthersPayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEtherscanPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEtherscanPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/etherscan-ethereum-gas-payload-plugin").EthereumGasEtherscanResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.etherscan";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasEtherscanPayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEtherscanPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEtherscanPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/etherscan-ethereum-gas-payload-plugin").EthereumGasEtherscanResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.etherscan";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasEtherscanPayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEtherscanPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEtherscanPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/etherscan-ethereum-gas-payload-plugin").EthereumGasEtherscanResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.etherscan";
|
|
4
4
|
};
|
|
5
5
|
//# sourceMappingURL=isEthereumGasEtherscanPayload.d.ts.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEthgasstationPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEthgasstationPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/ethgasstation-ethereum-gas-payload-plugin").EthereumGasEthgasstationResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.ethgasstation";
|
|
4
4
|
timestamp: number;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEthgasstationPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEthgasstationPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/ethgasstation-ethereum-gas-payload-plugin").EthereumGasEthgasstationResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.ethgasstation";
|
|
4
4
|
timestamp: number;
|
|
5
5
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Payload } from '@xyo-network/payload-model';
|
|
2
|
-
export declare const isEthereumGasEthgasstationPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields &
|
|
2
|
+
export declare const isEthereumGasEthgasstationPayload: (payload?: Payload | null) => payload is import("@xyo-network/payload-model").SchemaFields & import("@xyo-network/payload-model").PayloadFields & import("@xyo-network/ethgasstation-ethereum-gas-payload-plugin").EthereumGasEthgasstationResponse & {
|
|
3
3
|
schema: "network.xyo.blockchain.ethereum.gas.ethgasstation";
|
|
4
4
|
timestamp: number;
|
|
5
5
|
};
|
package/package.json
CHANGED
|
@@ -10,31 +10,31 @@
|
|
|
10
10
|
"url": "https://github.com/XYOracleNetwork/plugins/issues"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@xylabs/exists": "^3.0.
|
|
14
|
-
"@xyo-network/blocknative-ethereum-gas-payload-plugin": "~2.89.
|
|
15
|
-
"@xyo-network/diviner-abstract": "^2.92.
|
|
16
|
-
"@xyo-network/diviner-model": "^2.92.
|
|
17
|
-
"@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins": "~2.89.
|
|
18
|
-
"@xyo-network/ethers-ethereum-gas-payload-plugin": "~2.89.
|
|
19
|
-
"@xyo-network/etherscan-ethereum-gas-payload-plugin": "~2.89.
|
|
20
|
-
"@xyo-network/ethgasstation-ethereum-gas-payload-plugin": "~2.89.
|
|
21
|
-
"@xyo-network/gas-price-payload-plugin": "~2.89.
|
|
22
|
-
"@xyo-network/module-model": "^2.92.
|
|
23
|
-
"@xyo-network/payload-builder": "^2.92.
|
|
24
|
-
"@xyo-network/payload-model": "^2.92.
|
|
25
|
-
"@xyo-network/payloadset-plugin": "^2.92.
|
|
13
|
+
"@xylabs/exists": "^3.0.15",
|
|
14
|
+
"@xyo-network/blocknative-ethereum-gas-payload-plugin": "~2.89.1",
|
|
15
|
+
"@xyo-network/diviner-abstract": "^2.92.8",
|
|
16
|
+
"@xyo-network/diviner-model": "^2.92.8",
|
|
17
|
+
"@xyo-network/etherchain-gas-ethereum-blockchain-payload-plugins": "~2.89.1",
|
|
18
|
+
"@xyo-network/ethers-ethereum-gas-payload-plugin": "~2.89.1",
|
|
19
|
+
"@xyo-network/etherscan-ethereum-gas-payload-plugin": "~2.89.1",
|
|
20
|
+
"@xyo-network/ethgasstation-ethereum-gas-payload-plugin": "~2.89.1",
|
|
21
|
+
"@xyo-network/gas-price-payload-plugin": "~2.89.1",
|
|
22
|
+
"@xyo-network/module-model": "^2.92.8",
|
|
23
|
+
"@xyo-network/payload-builder": "^2.92.8",
|
|
24
|
+
"@xyo-network/payload-model": "^2.92.8",
|
|
25
|
+
"@xyo-network/payloadset-plugin": "^2.92.8",
|
|
26
26
|
"regression": "^2.0.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@types/regression": "^2.0.6",
|
|
30
|
-
"@xylabs/ts-scripts-yarn3": "^3.
|
|
31
|
-
"@xylabs/tsconfig": "^3.
|
|
32
|
-
"@xyo-network/account": "^2.92.
|
|
33
|
-
"@xyo-network/blocknative-ethereum-gas-plugin": "~2.89.
|
|
34
|
-
"@xyo-network/etherchain-gas-ethereum-blockchain-plugins": "~2.89.
|
|
35
|
-
"@xyo-network/ethers-ethereum-gas-plugin": "~2.89.
|
|
36
|
-
"@xyo-network/etherscan-ethereum-gas-plugin": "~2.89.
|
|
37
|
-
"@xyo-network/witness-blockchain-abstract": "^2.92.
|
|
30
|
+
"@xylabs/ts-scripts-yarn3": "^3.5.2",
|
|
31
|
+
"@xylabs/tsconfig": "^3.5.2",
|
|
32
|
+
"@xyo-network/account": "^2.92.8",
|
|
33
|
+
"@xyo-network/blocknative-ethereum-gas-plugin": "~2.89.1",
|
|
34
|
+
"@xyo-network/etherchain-gas-ethereum-blockchain-plugins": "~2.89.1",
|
|
35
|
+
"@xyo-network/ethers-ethereum-gas-plugin": "~2.89.1",
|
|
36
|
+
"@xyo-network/etherscan-ethereum-gas-plugin": "~2.89.1",
|
|
37
|
+
"@xyo-network/witness-blockchain-abstract": "^2.92.8",
|
|
38
38
|
"typescript": "^5.4.2"
|
|
39
39
|
},
|
|
40
40
|
"description": "Typescript/Javascript Plugins for XYO Platform",
|
|
@@ -76,6 +76,6 @@
|
|
|
76
76
|
"url": "https://github.com/XYOracleNetwork/plugins.git"
|
|
77
77
|
},
|
|
78
78
|
"sideEffects": false,
|
|
79
|
-
"version": "2.89.
|
|
79
|
+
"version": "2.89.1",
|
|
80
80
|
"type": "module"
|
|
81
81
|
}
|