Skip to content

Commit

Permalink
style: renamed sdk to tatum
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Papirniy committed Jan 31, 2022
1 parent bf0747d commit 0613ac7
Show file tree
Hide file tree
Showing 15 changed files with 36 additions and 15 deletions.
23 changes: 22 additions & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,28 @@ jobs:
- name: Config git email
run: git config --global user.email "[email protected]"

- name: Config git name
- name: Config git nam





















run: git config --global user.name "Hathoriel"

- run: npx nxpm release $(npm --no-git-tag-version version prerelease) --fix --ci
Expand Down
2 changes: 1 addition & 1 deletion examples/sdk-example/src/app/sdk.kms.example.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TatumSDK } from '@tatumio/sdk'
import { TatumSDK } from '@tatumio/tatum'
import { REPLACE_ME_WITH_TATUM_API_KEY } from '@tatumio/shared-testing'
import { Blockchain } from '@tatumio/shared-core'

Expand Down
2 changes: 1 addition & 1 deletion examples/sdk-example/src/app/sdk.ledger.example.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TatumSDK } from '@tatumio/sdk'
import { TatumSDK } from '@tatumio/tatum'
import { REPLACE_ME_WITH_TATUM_API_KEY } from '@tatumio/shared-testing'
import { Currency } from '@tatumio/shared-core'
import { CreateTrade, VirtualCurrency } from '@tatumio/api-client'
Expand Down
2 changes: 1 addition & 1 deletion examples/sdk-example/src/app/sdk.log.example.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TatumSDK } from '@tatumio/sdk'
import { TatumSDK } from '@tatumio/tatum'
import { REPLACE_ME_WITH_TATUM_API_KEY } from '@tatumio/shared-testing'
import { Currency } from '@tatumio/shared-core'

Expand Down
2 changes: 1 addition & 1 deletion examples/sdk-example/src/app/sdk.multitoken.example.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TatumSDK } from '@tatumio/sdk'
import { TatumSDK } from '@tatumio/tatum'
import { REPLACE_ME_WITH_TATUM_API_KEY } from '@tatumio/shared-testing'
import { Currency } from '@tatumio/shared-core'

Expand Down
2 changes: 1 addition & 1 deletion examples/sdk-example/src/app/sdk.nft.example.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TatumSDK } from '@tatumio/sdk'
import { TatumSDK } from '@tatumio/tatum'
import { REPLACE_ME_WITH_TATUM_API_KEY } from '@tatumio/shared-testing'
import { Currency } from '@tatumio/shared-core'

Expand Down
2 changes: 1 addition & 1 deletion examples/sdk-example/src/app/sdk.offchain.example.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TatumSDK } from '@tatumio/sdk'
import { TatumSDK } from '@tatumio/tatum'
import { REPLACE_ME_WITH_TATUM_API_KEY } from '@tatumio/shared-testing'
import { Currency } from '@tatumio/shared-core'

Expand Down
2 changes: 1 addition & 1 deletion examples/sdk-example/src/app/sdk.root.example.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TatumSDK } from '@tatumio/sdk'
import { TatumSDK } from '@tatumio/tatum'
import { REPLACE_ME_WITH_TATUM_API_KEY } from '@tatumio/shared-testing'
import { Currency } from '@tatumio/shared-core'

Expand Down
2 changes: 1 addition & 1 deletion examples/sdk-example/src/app/sdk.storage.example.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TatumSDK } from '@tatumio/sdk'
import { TatumSDK } from '@tatumio/tatum'
import { REPLACE_ME_WITH_TATUM_API_KEY } from '@tatumio/shared-testing'

const tatumSDK = TatumSDK({ apiKey: REPLACE_ME_WITH_TATUM_API_KEY })
Expand Down
2 changes: 1 addition & 1 deletion examples/sdk-example/src/app/sdk.subscriptions.example.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TatumSDK } from '@tatumio/sdk'
import { TatumSDK } from '@tatumio/tatum'
import { REPLACE_ME_WITH_TATUM_API_KEY } from '@tatumio/shared-testing'
import { CreateSubscriptionIncoming } from '@tatumio/api-client'

Expand Down
2 changes: 1 addition & 1 deletion examples/sdk-example/src/app/sdk.tatum.example.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TatumSDK } from '@tatumio/sdk'
import { TatumSDK } from '@tatumio/tatum'
import { REPLACE_ME_WITH_TATUM_API_KEY } from '@tatumio/shared-testing'

const tatumSDK = TatumSDK({ apiKey: REPLACE_ME_WITH_TATUM_API_KEY })
Expand Down
2 changes: 1 addition & 1 deletion examples/sdk-example/src/app/sdk.wallet.example.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TatumSDK } from '@tatumio/sdk'
import { TatumSDK } from '@tatumio/tatum'
import { Currency } from '@tatumio/shared-core'
import { REPLACE_ME_WITH_TATUM_API_KEY, TEST_DATA } from '@tatumio/shared-testing'

Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@tatumio/sdk",
"name": "@tatumio/tatum",
"version": "v2.0.0-alpha.201",
"license": "MIT"
}
2 changes: 1 addition & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
"@tatumio/one": ["packages/blockchain/one/src/index.ts"],
"@tatumio/polygon": ["packages/blockchain/polygon/src/index.ts"],
"@tatumio/scrypta": ["packages/blockchain/scrypta/src/index.ts"],
"@tatumio/sdk": ["packages/sdk/src/index.ts"],
"@tatumio/shared-abstract-sdk": ["packages/shared/abstract-sdk/src/index.ts"],
"@tatumio/shared-blockchain-abstract": ["packages/shared/blockchain/abstract/src/index.ts"],
"@tatumio/shared-blockchain-btc-based": ["packages/shared/blockchain/btc-based/src/index.ts"],
"@tatumio/shared-blockchain-evm-based": ["packages/shared/blockchain/evm-based/src/index.ts"],
"@tatumio/shared-core": ["packages/shared/core/src/index.ts"],
"@tatumio/shared-testing": ["packages/shared/testing/src/index.ts"],
"@tatumio/tatum": ["packages/sdk/src/index.ts"],
"@tatumio/xlm": ["packages/blockchain/xlm/src/index.ts"],
"@tatumio/xrp": ["packages/blockchain/xrp/src/index.ts"]
}
Expand Down
2 changes: 1 addition & 1 deletion workspace.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"polygon": "packages/blockchain/polygon",
"polygon-example": "examples/polygon-example",
"scrypta": "packages/blockchain/scrypta",
"sdk": "packages/sdk",
"tatum": "packages/sdk",
"shared-abstract-sdk": "packages/shared/abstract-sdk",
"shared-blockchain-abstract": "packages/shared/blockchain/abstract",
"shared-blockchain-btc-based": "packages/shared/blockchain/btc-based",
Expand Down

0 comments on commit 0613ac7

Please sign in to comment.