Skip to content

Commit

Permalink
ALL-2835 - Extension Ecosystem enabler - cleanup 8
Browse files Browse the repository at this point in the history
  • Loading branch information
Smrecz committed Sep 22, 2023
1 parent a33cf7b commit bb0f325
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -592,14 +592,14 @@ Import any Tatum SDK extension to your project and start using it right away.

```typescript
import { TatumSDK, Ethereum, Network, ApiVersion } from '@tatumio/tatum'
import { HelloWorldExtension } from "@tatumio/hello-world";
import { HelloWorldExtension } from "@tatumio/hello-world"

const tatumSdk = await TatumSDK.init<Ethereum>({
network: Network.ETHEREUM_SEPOLIA,
configureExtensions: [
HelloWorldExtension,
]
})
network: Network.ETHEREUM_SEPOLIA,
configureExtensions: [
HelloWorldExtension,
]
})
```

After that you can use the extension in your code with full intellisense.
Expand Down

0 comments on commit bb0f325

Please sign in to comment.