@dynamic-labs/sdk-api-core 0.0.562 → 0.0.563

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api-core",
3
- "version": "0.0.562",
3
+ "version": "0.0.563",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -18,6 +18,7 @@ function NativeCurrencyFromJSONTyped(json, ignoreDiscriminator) {
18
18
  'symbol': json['symbol'],
19
19
  'denom': !runtime.exists(json, 'denom') ? undefined : json['denom'],
20
20
  'iconUrl': !runtime.exists(json, 'iconUrl') ? undefined : json['iconUrl'],
21
+ 'pricingProviderTokenId': !runtime.exists(json, 'pricingProviderTokenId') ? undefined : json['pricingProviderTokenId'],
21
22
  };
22
23
  }
23
24
  function NativeCurrencyToJSON(value) {
@@ -33,6 +34,7 @@ function NativeCurrencyToJSON(value) {
33
34
  'symbol': value.symbol,
34
35
  'denom': value.denom,
35
36
  'iconUrl': value.iconUrl,
37
+ 'pricingProviderTokenId': value.pricingProviderTokenId,
36
38
  };
37
39
  }
38
40
 
@@ -45,6 +45,12 @@ export interface NativeCurrency {
45
45
  * @memberof NativeCurrency
46
46
  */
47
47
  iconUrl?: string;
48
+ /**
49
+ *
50
+ * @type {string}
51
+ * @memberof NativeCurrency
52
+ */
53
+ pricingProviderTokenId?: string;
48
54
  }
49
55
  export declare function NativeCurrencyFromJSON(json: any): NativeCurrency;
50
56
  export declare function NativeCurrencyFromJSONTyped(json: any, ignoreDiscriminator: boolean): NativeCurrency;
@@ -14,6 +14,7 @@ function NativeCurrencyFromJSONTyped(json, ignoreDiscriminator) {
14
14
  'symbol': json['symbol'],
15
15
  'denom': !exists(json, 'denom') ? undefined : json['denom'],
16
16
  'iconUrl': !exists(json, 'iconUrl') ? undefined : json['iconUrl'],
17
+ 'pricingProviderTokenId': !exists(json, 'pricingProviderTokenId') ? undefined : json['pricingProviderTokenId'],
17
18
  };
18
19
  }
19
20
  function NativeCurrencyToJSON(value) {
@@ -29,6 +30,7 @@ function NativeCurrencyToJSON(value) {
29
30
  'symbol': value.symbol,
30
31
  'denom': value.denom,
31
32
  'iconUrl': value.iconUrl,
33
+ 'pricingProviderTokenId': value.pricingProviderTokenId,
32
34
  };
33
35
  }
34
36