Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions examples/api-search/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default tseslint.config(
globals: globals.browser,
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand All @@ -33,6 +34,7 @@ export default tseslint.config(
languageOptions: {
parserOptions: {
project: './tsconfig.node.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand Down
16 changes: 8 additions & 8 deletions examples/api-search/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"preview": "vite preview"
},
"dependencies": {
"@txnlab/nfd-sdk": "^1.0.0",
"@txnlab/nfd-sdk": "workspace:*",
"algosdk": "^3.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^4.5.2",
"vite-plugin-node-polyfills": "^0.23.0"
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.2.0",
"vite": "^7.3.6",
"vite-plugin-node-polyfills": "^0.28.0"
}
}
3 changes: 1 addition & 2 deletions examples/api-search/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,7 @@ export function App(): JSX.Element {
// Check if a value is selected in a group
const isSelected = (group: string, value: string): boolean => {
const values = searchParams[group as keyof typeof searchParams] as
| string[]
| undefined
string[] | undefined
return values ? values.includes(value) : false
}

Expand Down
2 changes: 2 additions & 0 deletions examples/claim-nfd/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default tseslint.config(
globals: globals.browser,
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand All @@ -33,6 +34,7 @@ export default tseslint.config(
languageOptions: {
parserOptions: {
project: './tsconfig.node.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand Down
20 changes: 10 additions & 10 deletions examples/claim-nfd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^8.2.2",
"@txnlab/nfd-sdk": "^1.0.0",
"@txnlab/use-wallet-react": "^4.0.0",
"@txnlab/nfd-sdk": "workspace:*",
"@txnlab/use-wallet-react": "^4.6.0",
"algosdk": "^3.7.0",
"lute-connect": "^1.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"lute-connect": "^1.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^4.5.2",
"vite-plugin-node-polyfills": "^0.23.0"
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.2.0",
"vite": "^7.3.6",
"vite-plugin-node-polyfills": "^0.28.0"
}
}
2 changes: 2 additions & 0 deletions examples/link-address/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default tseslint.config(
globals: globals.browser,
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand All @@ -33,6 +34,7 @@ export default tseslint.config(
languageOptions: {
parserOptions: {
project: './tsconfig.node.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand Down
20 changes: 10 additions & 10 deletions examples/link-address/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^8.2.2",
"@txnlab/nfd-sdk": "^1.0.0",
"@txnlab/use-wallet-react": "^4.0.0",
"@txnlab/nfd-sdk": "workspace:*",
"@txnlab/use-wallet-react": "^4.6.0",
"algosdk": "^3.7.0",
"lute-connect": "^1.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"lute-connect": "^1.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^4.5.2",
"vite-plugin-node-polyfills": "^0.23.0"
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.2.0",
"vite": "^7.3.6",
"vite-plugin-node-polyfills": "^0.28.0"
}
}
2 changes: 2 additions & 0 deletions examples/lookup/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export default tseslint.config(
globals: globals.node,
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand All @@ -23,6 +24,7 @@ export default tseslint.config(
languageOptions: {
parserOptions: {
project: './tsconfig.node.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand Down
8 changes: 4 additions & 4 deletions examples/lookup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@txnlab/nfd-sdk": "^1.0.0",
"algosdk": "^3.5.2"
"@txnlab/nfd-sdk": "workspace:*",
"algosdk": "^3.7.0"
},
"devDependencies": {
"@types/node": "^22.13.9",
"tsx": "^4.19.3"
"@types/node": "^22.20.1",
"tsx": "^4.23.12"
}
}
2 changes: 2 additions & 0 deletions examples/mint/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default tseslint.config(
globals: globals.browser,
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand All @@ -33,6 +34,7 @@ export default tseslint.config(
languageOptions: {
parserOptions: {
project: './tsconfig.node.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand Down
20 changes: 10 additions & 10 deletions examples/mint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^8.2.2",
"@txnlab/nfd-sdk": "^1.0.0",
"@txnlab/use-wallet-react": "^4.0.0",
"@txnlab/nfd-sdk": "workspace:*",
"@txnlab/use-wallet-react": "^4.6.0",
"algosdk": "^3.7.0",
"lute-connect": "^1.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"lute-connect": "^1.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^4.5.2",
"vite-plugin-node-polyfills": "^0.23.0"
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.2.0",
"vite": "^7.3.6",
"vite-plugin-node-polyfills": "^0.28.0"
}
}
2 changes: 2 additions & 0 deletions examples/nfd-metadata/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default tseslint.config(
globals: globals.browser,
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand All @@ -33,6 +34,7 @@ export default tseslint.config(
languageOptions: {
parserOptions: {
project: './tsconfig.node.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand Down
16 changes: 8 additions & 8 deletions examples/nfd-metadata/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"preview": "vite preview"
},
"dependencies": {
"@txnlab/nfd-sdk": "^1.0.0",
"@txnlab/nfd-sdk": "workspace:*",
"algosdk": "^3.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^4.5.2",
"vite-plugin-node-polyfills": "^0.23.0"
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.2.0",
"vite": "^7.3.6",
"vite-plugin-node-polyfills": "^0.28.0"
}
}
2 changes: 2 additions & 0 deletions examples/resolve/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default tseslint.config(
globals: globals.browser,
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand All @@ -33,6 +34,7 @@ export default tseslint.config(
languageOptions: {
parserOptions: {
project: './tsconfig.node.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand Down
16 changes: 8 additions & 8 deletions examples/resolve/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"preview": "vite preview"
},
"dependencies": {
"@txnlab/nfd-sdk": "^1.0.0",
"@txnlab/nfd-sdk": "workspace:*",
"algosdk": "^3.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^4.5.2",
"vite-plugin-node-polyfills": "^0.23.0"
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.2.0",
"vite": "^7.3.6",
"vite-plugin-node-polyfills": "^0.28.0"
}
}
2 changes: 2 additions & 0 deletions examples/reverse-lookup/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default tseslint.config(
globals: globals.browser,
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand All @@ -33,6 +34,7 @@ export default tseslint.config(
languageOptions: {
parserOptions: {
project: './tsconfig.node.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand Down
16 changes: 8 additions & 8 deletions examples/reverse-lookup/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@
"preview": "vite preview"
},
"dependencies": {
"@txnlab/nfd-sdk": "^1.0.0",
"@txnlab/nfd-sdk": "workspace:*",
"algosdk": "^3.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^4.5.2",
"vite-plugin-node-polyfills": "^0.23.0"
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.2.0",
"vite": "^7.3.6",
"vite-plugin-node-polyfills": "^0.28.0"
}
}
2 changes: 2 additions & 0 deletions examples/set-metadata/eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default tseslint.config(
globals: globals.browser,
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand All @@ -33,6 +34,7 @@ export default tseslint.config(
languageOptions: {
parserOptions: {
project: './tsconfig.node.json',
tsconfigRootDir: import.meta.dirname,
},
},
plugins: {
Expand Down
20 changes: 10 additions & 10 deletions examples/set-metadata/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
},
"dependencies": {
"@algorandfoundation/algokit-utils": "^8.2.2",
"@txnlab/nfd-sdk": "^1.0.0",
"@txnlab/use-wallet-react": "^4.0.0",
"@txnlab/nfd-sdk": "workspace:*",
"@txnlab/use-wallet-react": "^4.6.0",
"algosdk": "^3.7.0",
"lute-connect": "^1.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"lute-connect": "^1.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^4.5.2",
"vite-plugin-node-polyfills": "^0.23.0"
"@types/react": "^18.3.31",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.2.0",
"vite": "^7.3.6",
"vite-plugin-node-polyfills": "^0.28.0"
}
}
Loading