@show-karma/karma-gap-sdk 0.1.30 → 0.1.31
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 +1 -1
- package/readme.md +3 -3
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -102,7 +102,7 @@ The `apiClient` option is employed when you wish to use a Custom API. The SDK pr
|
|
|
102
102
|
|
|
103
103
|
```ts
|
|
104
104
|
// MyCustomApiClient.ts
|
|
105
|
-
import { Fetcher } from 'karma-gap-sdk/core/class/Fetcher';
|
|
105
|
+
import { Fetcher } from '@show-karma/karma-gap-sdk/core/class/Fetcher';
|
|
106
106
|
|
|
107
107
|
export class MyCustomApiClient extends Fetcher {
|
|
108
108
|
// ... implement all Fetcher methods following its return types and arguments.
|
|
@@ -666,7 +666,7 @@ When using an external API to facilitate gasless transactions, you'll need to cr
|
|
|
666
666
|
```ts
|
|
667
667
|
// gelato/sponsor-handler.ts
|
|
668
668
|
import { GelatoRelay } from '@gelatonetwork/relay-sdk';
|
|
669
|
-
import { Gelato } from 'karma-gap-sdk/core/utils/gelato/';
|
|
669
|
+
import { Gelato } from '@show-karma/karma-gap-sdk/core/utils/gelato/';
|
|
670
670
|
// Exception Handler available under your development.
|
|
671
671
|
import { HttpException } from '../error/HttpException';
|
|
672
672
|
|
|
@@ -784,7 +784,7 @@ You can review the Fetcher interface in [this file](https://github.com/show-karm
|
|
|
784
784
|
|
|
785
785
|
```ts
|
|
786
786
|
// my-fetcher.ts
|
|
787
|
-
import { Fetcher } from 'karma-gap-sdk/core/class/Fetcher.ts';
|
|
787
|
+
import { Fetcher } from '@show-karma/karma-gap-sdk/core/class/Fetcher.ts';
|
|
788
788
|
import { Attestation } from '@show-karma/karma-gap-sdk';
|
|
789
789
|
|
|
790
790
|
const Endpoints = {
|