Skip to content

Commit fc580e1

Browse files
committed
fix: remove subpath imports and redundant language aliases
1 parent 9d759a4 commit fc580e1

File tree

6 files changed

+4
-107
lines changed

6 files changed

+4
-107
lines changed

docs/content/docs/addresses/index.mdx

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -71,27 +71,6 @@ const bytes = Address.toBytes(address);
7171
const fromBytes = Address.fromBytes(bytes);
7272
```
7373

74-
### Utility Functions
75-
76-
```typescript twoslash
77-
import * as AddressStructure from "@evolution-sdk/evolution/core/AddressStructure";
78-
79-
const addr1: any = null as any;
80-
const addr2: any = null as any;
81-
// ---cut---
82-
// Compare addresses
83-
const areEqual = AddressStructure.equals(addr1, addr2);
84-
85-
// Check if has staking
86-
const hasStaking = AddressStructure.hasStakingCredential(addr1);
87-
88-
// Check if enterprise (no staking)
89-
const isEnterprise = AddressStructure.isEnterprise(addr1);
90-
91-
// Get network ID
92-
const networkId = AddressStructure.getNetworkId(addr1);
93-
```
94-
9574
## Choosing the Right Type
9675

9776
### Use Base Addresses When

docs/next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
import "./.next/types/routes.d.ts";
3+
import "./out/dev/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

docs/source.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ export default defineConfig({
2222
light: "github-light",
2323
dark: "github-dark"
2424
},
25-
// Explicit language list for lazy loading - add all JS/TS variants
26-
langs: ['typescript', 'ts', 'tsx', 'javascript', 'js', 'jsx', 'bash', 'sh'],
25+
// Explicit language list for lazy loading
26+
langs: ['ts', 'tsx', 'js', 'jsx', 'bash', 'sh'],
2727
transformers: [
2828
...(rehypeCodeDefaultOptions.transformers ?? []),
2929
transformerTwoslash({

docs/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"moduleResolution": "bundler",
1818
"resolveJsonModule": true,
1919
"isolatedModules": true,
20-
"jsx": "preserve",
20+
"jsx": "react-jsx",
2121
"incremental": true,
2222
"paths": {
2323
"@/.source": [

packages/evolution/docs/effect-container-class-examples.md

Whitespace-only changes.

packages/evolution/src/sdk/CredentialExperimental.ts

Lines changed: 0 additions & 82 deletions
This file was deleted.

0 commit comments

Comments
 (0)