@xyo-network/diviner-address-chain-model 3.9.2 → 3.9.4
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 +1 -10
- package/package.json +4 -4
package/dist/neutral/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import { Address, Hash } from '@xylabs/hex';
|
|
|
2
2
|
import { DivinerConfig, DivinerParams } from '@xyo-network/diviner-model';
|
|
3
3
|
import { AnyConfigSchema } from '@xyo-network/module-model';
|
|
4
4
|
import { Payload, Query, PayloadFindFilter } from '@xyo-network/payload-model';
|
|
5
|
-
import * as _xylabs_object from '@xylabs/object';
|
|
6
5
|
|
|
7
6
|
declare const AddressChainSchema: "network.xyo.diviner.address.chain";
|
|
8
7
|
type AddressChainSchema = typeof AddressChainSchema;
|
|
@@ -28,14 +27,6 @@ declare const isAddressChainPayload: (x?: Payload | null) => x is AddressChainPa
|
|
|
28
27
|
type AddressChainQueryPayload = Query<{
|
|
29
28
|
schema: AddressChainQuerySchema;
|
|
30
29
|
} & Omit<PayloadFindFilter, 'schema'>>;
|
|
31
|
-
declare const isAddressChainQueryPayload: (x?: unknown | null) => x is
|
|
32
|
-
schema: "network.xyo.diviner.address.chain.query";
|
|
33
|
-
address?: Lowercase<string> | Lowercase<string>[] | undefined;
|
|
34
|
-
limit?: number | undefined;
|
|
35
|
-
order?: "desc" | "asc" | undefined;
|
|
36
|
-
budget?: number | undefined;
|
|
37
|
-
maxFrequency?: "once" | "second" | "minute" | "hour" | "day" | "week" | "month" | "year" | undefined;
|
|
38
|
-
minBid?: number | undefined;
|
|
39
|
-
}>;
|
|
30
|
+
declare const isAddressChainQueryPayload: (x?: unknown | null) => x is AddressChainQueryPayload;
|
|
40
31
|
|
|
41
32
|
export { type AddressChainDivinerConfig, AddressChainDivinerConfigSchema, type AddressChainDivinerParams, type AddressChainPayload, type AddressChainQueryPayload, AddressChainQuerySchema, AddressChainSchema, isAddressChainPayload, isAddressChainQueryPayload };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/diviner-address-chain-model",
|
|
3
|
-
"version": "3.9.
|
|
3
|
+
"version": "3.9.4",
|
|
4
4
|
"description": "Primary SDK for using XYO Protocol 2.0",
|
|
5
5
|
"homepage": "https://xyo.network",
|
|
6
6
|
"bugs": {
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
"types": "dist/neutral/index.d.ts",
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@xylabs/hex": "^4.5.1",
|
|
33
|
-
"@xyo-network/diviner-model": "^3.9.
|
|
34
|
-
"@xyo-network/module-model": "^3.9.
|
|
35
|
-
"@xyo-network/payload-model": "^3.9.
|
|
33
|
+
"@xyo-network/diviner-model": "^3.9.4",
|
|
34
|
+
"@xyo-network/module-model": "^3.9.4",
|
|
35
|
+
"@xyo-network/payload-model": "^3.9.4"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@xylabs/ts-scripts-yarn3": "^5.0.24",
|