@iota/graphql-transport 0.1.0 → 0.1.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @iota/graphql-transport
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - d423314: Sync API changes:
8
+
9
+ - restore extended api metrics endpoints
10
+ - remove nameservice endpoints
11
+
12
+ - b91a3d5: Update auto-generated files to latest IotaGenesisTransaction event updates
13
+ - Updated dependencies [d423314]
14
+ - Updated dependencies [b91a3d5]
15
+ - Updated dependencies [a3c1937]
16
+ - @iota/iota-sdk@0.2.0
17
+
18
+ ## 0.1.1
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [4a4ba5a]
23
+ - @iota/iota-sdk@0.1.1
24
+
3
25
  ## 0.1.0
4
26
 
5
27
  ### Minor Changes
package/README.md CHANGED
@@ -17,7 +17,7 @@ import { getFullnodeUrl, IotaClient } from '@iota/iota-sdk/client';
17
17
 
18
18
  const client = new IotaClient({
19
19
  transport: new IotaClientGraphQLTransport({
20
- url: 'https://iota-testnet.mystenlabs.com/graphql',
20
+ url: 'https://iota-testnet.iota.org/graphql',
21
21
  // When specified, the transport will fallback to JSON RPC for unsupported method and parameters
22
22
  fallbackFullNodeUrl: getFullnodeUrl('testnet'),
23
23
  }),