@0xsequence/metadata 1.10.6 → 1.10.8

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.
@@ -397,6 +397,7 @@ export interface SearchTokensReturn {
397
397
  export interface SearchContractsArgs {
398
398
  q: string;
399
399
  chainID?: string;
400
+ chainIDs?: Array<string>;
400
401
  types?: Array<ContractType>;
401
402
  page?: Page;
402
403
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@0xsequence/metadata",
3
- "version": "1.10.6",
3
+ "version": "1.10.8",
4
4
  "description": "metadata sub-package for Sequence",
5
5
  "repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/metadata",
6
6
  "source": "src/index.ts",
@@ -506,6 +506,7 @@ export interface SearchTokensReturn {
506
506
  export interface SearchContractsArgs {
507
507
  q: string
508
508
  chainID?: string
509
+ chainIDs?: Array<string>
509
510
  types?: Array<ContractType>
510
511
  page?: Page
511
512
  }