From fc64d81cad6955d44a17c4948bbf1ec5395644f3 Mon Sep 17 00:00:00 2001 From: Harsh Date: Mon, 27 Jul 2026 13:38:24 -0400 Subject: [PATCH] chore: remove unnecessary fs dependency from example package.json files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The npm package literally named "fs" is not Node's built-in fs module — it's npm's official security-holding placeholder for a name no longer in use (per the registry: "This package name is not currently in use..."). It resolves to a do-nothing stub and was never imported by any of these examples' code. Node's built-in fs/node:fs module (used by several of these examples to read keypair fixtures in tests) is compiled into the Node runtime and is unaffected by this change, since built-ins never resolve through node_modules. Verified locally across all 22 affected examples: pnpm install succeeds in every one, and cargo build-sbf + test execution passes for all examples this repo's CI currently tracks. --- basics/account-data/native/package.json | 1 - basics/account-data/native/pnpm-lock.yaml | 8 -------- basics/cross-program-invocation/native/package.json | 1 - .../cross-program-invocation/native/pnpm-lock.yaml | 12 ++++-------- basics/program-derived-addresses/native/package.json | 1 - .../program-derived-addresses/native/pnpm-lock.yaml | 8 -------- .../program-derived-addresses/pinocchio/package.json | 3 +-- .../pinocchio/pnpm-lock.yaml | 8 -------- basics/realloc/native/package.json | 3 +-- basics/realloc/native/pnpm-lock.yaml | 10 ++-------- basics/realloc/pinocchio/package.json | 3 +-- basics/realloc/pinocchio/pnpm-lock.yaml | 8 -------- basics/rent/native/package.json | 3 +-- basics/rent/native/pnpm-lock.yaml | 8 -------- basics/rent/pinocchio/package.json | 3 +-- basics/rent/pinocchio/pnpm-lock.yaml | 8 -------- basics/repository-layout/native/package.json | 1 - basics/repository-layout/native/pnpm-lock.yaml | 8 -------- basics/transfer-sol/asm/package.json | 3 +-- basics/transfer-sol/asm/pnpm-lock.yaml | 8 -------- basics/transfer-sol/native/package.json | 3 +-- basics/transfer-sol/native/pnpm-lock.yaml | 8 -------- basics/transfer-sol/pinocchio/package.json | 3 +-- basics/transfer-sol/pinocchio/pnpm-lock.yaml | 8 -------- tokens/create-token/native/package.json | 3 +-- tokens/create-token/native/pnpm-lock.yaml | 8 -------- tokens/nft-minter/native/package.json | 3 +-- tokens/nft-minter/native/pnpm-lock.yaml | 8 -------- tokens/pda-mint-authority/native/package.json | 3 +-- tokens/pda-mint-authority/native/pnpm-lock.yaml | 8 -------- tokens/spl-token-minter/native/package.json | 3 +-- tokens/spl-token-minter/native/pnpm-lock.yaml | 8 -------- .../default-account-state/native/package.json | 3 +-- .../default-account-state/native/pnpm-lock.yaml | 8 -------- .../mint-close-authority/native/package.json | 3 +-- .../mint-close-authority/native/pnpm-lock.yaml | 8 -------- .../multiple-extensions/native/package.json | 3 +-- .../multiple-extensions/native/pnpm-lock.yaml | 8 -------- .../token-2022/non-transferable/native/package.json | 3 +-- .../non-transferable/native/pnpm-lock.yaml | 8 -------- tokens/token-2022/transfer-fee/native/package.json | 3 +-- tokens/token-2022/transfer-fee/native/pnpm-lock.yaml | 8 -------- tokens/transfer-tokens/native/package.json | 3 +-- tokens/transfer-tokens/native/pnpm-lock.yaml | 8 -------- 44 files changed, 24 insertions(+), 216 deletions(-) diff --git a/basics/account-data/native/package.json b/basics/account-data/native/package.json index 744189d47..419c05d20 100644 --- a/basics/account-data/native/package.json +++ b/basics/account-data/native/package.json @@ -8,7 +8,6 @@ }, "dependencies": { "@solana/web3.js": "^1.98.4", - "fs": "^0.0.1-security", "borsh": "^2.0.0" }, "devDependencies": { diff --git a/basics/account-data/native/pnpm-lock.yaml b/basics/account-data/native/pnpm-lock.yaml index 8484061eb..bd89fedcf 100644 --- a/basics/account-data/native/pnpm-lock.yaml +++ b/basics/account-data/native/pnpm-lock.yaml @@ -14,9 +14,6 @@ importers: borsh: specifier: ^2.0.0 version: 2.0.0 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -311,9 +308,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -974,8 +968,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/basics/cross-program-invocation/native/package.json b/basics/cross-program-invocation/native/package.json index 10512f166..c9cabf960 100644 --- a/basics/cross-program-invocation/native/package.json +++ b/basics/cross-program-invocation/native/package.json @@ -10,7 +10,6 @@ "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", "buffer": "^6.0.3", - "fs": "^0.0.1-security", "litesvm": "0.8.0" }, "devDependencies": { diff --git a/basics/cross-program-invocation/native/pnpm-lock.yaml b/basics/cross-program-invocation/native/pnpm-lock.yaml index 4f50b32f3..c7d083cc1 100644 --- a/basics/cross-program-invocation/native/pnpm-lock.yaml +++ b/basics/cross-program-invocation/native/pnpm-lock.yaml @@ -17,9 +17,6 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security litesvm: specifier: 0.8.0 version: 0.8.0(bufferutil@4.0.9)(typescript@4.9.5)(utf-8-validate@5.0.10) @@ -314,9 +311,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -431,24 +425,28 @@ packages: engines: {node: '>= 20'} cpu: [arm64] os: [linux] + libc: [glibc] litesvm-linux-arm64-musl@0.8.0: resolution: {integrity: sha512-g7vgYPJZC6cT1gaWA1M2SbZu+Sngs9FuxsybDSE1Mmelmaejlguf7X/ymUuhehaSjEY+QSi+ydWtwzgE95JL0w==} engines: {node: '>= 20'} cpu: [arm64] os: [linux] + libc: [musl] litesvm-linux-x64-gnu@0.8.0: resolution: {integrity: sha512-nn599p+XuOJoQN2XTSaY4Yz1ZqYxLNUbvt30kImuRUs2ZlIv5FANzM+VUsZgSzWV0phW8m6stX3mpdVv0iIuFQ==} engines: {node: '>= 20'} cpu: [x64] os: [linux] + libc: [glibc] litesvm-linux-x64-musl@0.8.0: resolution: {integrity: sha512-UH4v1GM4hNOjEIzx/dBZQ5mxWGFOd85qs7IBou070dLjH0vdZMh4avQCQyc127+A7aRfdc8+wK7t4SEIn4EEgw==} engines: {node: '>= 20'} cpu: [x64] os: [linux] + libc: [musl] litesvm@0.8.0: resolution: {integrity: sha512-P0Ly11FSr1f77bKwaRf0VQQZYdsw6Oi3OLKBxgBN5iJcB7W7lTjFB1tnVcJqdn1NMz6upqU/04rZFCC/JfYBWg==} @@ -984,8 +982,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/basics/program-derived-addresses/native/package.json b/basics/program-derived-addresses/native/package.json index 516474509..0428cd454 100644 --- a/basics/program-derived-addresses/native/package.json +++ b/basics/program-derived-addresses/native/package.json @@ -8,7 +8,6 @@ }, "dependencies": { "@solana/web3.js": "^1.98.4", - "fs": "^0.0.1-security", "borsh": "^2.0.0" }, "devDependencies": { diff --git a/basics/program-derived-addresses/native/pnpm-lock.yaml b/basics/program-derived-addresses/native/pnpm-lock.yaml index 1ef6504b7..bfdda279c 100644 --- a/basics/program-derived-addresses/native/pnpm-lock.yaml +++ b/basics/program-derived-addresses/native/pnpm-lock.yaml @@ -14,9 +14,6 @@ importers: borsh: specifier: ^2.0.0 version: 2.0.0 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -294,9 +291,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -924,8 +918,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/basics/program-derived-addresses/pinocchio/package.json b/basics/program-derived-addresses/pinocchio/package.json index 492846a47..749f6fecd 100644 --- a/basics/program-derived-addresses/pinocchio/package.json +++ b/basics/program-derived-addresses/pinocchio/package.json @@ -7,8 +7,7 @@ "deploy": "solana program deploy ./program/target/so/program.so" }, "dependencies": { - "@solana/web3.js": "^1.98.4", - "fs": "^0.0.1-security" + "@solana/web3.js": "^1.98.4" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/basics/program-derived-addresses/pinocchio/pnpm-lock.yaml b/basics/program-derived-addresses/pinocchio/pnpm-lock.yaml index 3373a82dd..50dbd406a 100644 --- a/basics/program-derived-addresses/pinocchio/pnpm-lock.yaml +++ b/basics/program-derived-addresses/pinocchio/pnpm-lock.yaml @@ -11,9 +11,6 @@ importers: '@solana/web3.js': specifier: ^1.98.4 version: 1.98.4(bufferutil@4.0.9)(typescript@5.9.3)(utf-8-validate@5.0.10) - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -288,9 +285,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -916,8 +910,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/basics/realloc/native/package.json b/basics/realloc/native/package.json index 1bbd3c6e5..182c6dcae 100644 --- a/basics/realloc/native/package.json +++ b/basics/realloc/native/package.json @@ -8,8 +8,7 @@ }, "dependencies": { "@solana/web3.js": "^1.98.4", - "borsh": "^2.0.0", - "fs": "^0.0.1-security" + "borsh": "^2.0.0" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/basics/realloc/native/pnpm-lock.yaml b/basics/realloc/native/pnpm-lock.yaml index 512871087..0c029978a 100644 --- a/basics/realloc/native/pnpm-lock.yaml +++ b/basics/realloc/native/pnpm-lock.yaml @@ -14,9 +14,6 @@ importers: borsh: specifier: ^2.0.0 version: 2.0.0 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -308,9 +305,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -537,12 +531,14 @@ packages: engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [glibc] solana-bankrun-linux-x64-musl@0.3.1: resolution: {integrity: sha512-6r8i0NuXg3CGURql8ISMIUqhE7Hx/O7MlIworK4oN08jYrP0CXdLeB/hywNn7Z8d1NXrox/NpYUgvRm2yIzAsQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] + libc: [musl] solana-bankrun@0.3.1: resolution: {integrity: sha512-inRwON7fBU5lPC36HdEqPeDg15FXJYcf77+o0iz9amvkUMJepcwnRwEfTNyMVpVYdgjTOBW5vg+596/3fi1kGA==} @@ -969,8 +965,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/basics/realloc/pinocchio/package.json b/basics/realloc/pinocchio/package.json index a915c2120..518237296 100644 --- a/basics/realloc/pinocchio/package.json +++ b/basics/realloc/pinocchio/package.json @@ -7,8 +7,7 @@ "deploy": "solana program deploy ./program/target/so/program.so" }, "dependencies": { - "@solana/web3.js": "^1.98.4", - "fs": "^0.0.1-security" + "@solana/web3.js": "^1.98.4" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/basics/realloc/pinocchio/pnpm-lock.yaml b/basics/realloc/pinocchio/pnpm-lock.yaml index ebd1566a3..0d91ceb1a 100644 --- a/basics/realloc/pinocchio/pnpm-lock.yaml +++ b/basics/realloc/pinocchio/pnpm-lock.yaml @@ -11,9 +11,6 @@ importers: '@solana/web3.js': specifier: ^1.98.4 version: 1.98.4(bufferutil@4.0.9)(typescript@5.9.3)(utf-8-validate@5.0.10) - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -305,9 +302,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -966,8 +960,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/basics/rent/native/package.json b/basics/rent/native/package.json index a3189434a..a3defd7d1 100644 --- a/basics/rent/native/package.json +++ b/basics/rent/native/package.json @@ -9,8 +9,7 @@ "dependencies": { "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", - "buffer": "^6.0.3", - "fs": "^0.0.1-security" + "buffer": "^6.0.3" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/basics/rent/native/pnpm-lock.yaml b/basics/rent/native/pnpm-lock.yaml index 2c6f9fe46..9363e3fa8 100644 --- a/basics/rent/native/pnpm-lock.yaml +++ b/basics/rent/native/pnpm-lock.yaml @@ -17,9 +17,6 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -314,9 +311,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -977,8 +971,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/basics/rent/pinocchio/package.json b/basics/rent/pinocchio/package.json index a3189434a..a3defd7d1 100644 --- a/basics/rent/pinocchio/package.json +++ b/basics/rent/pinocchio/package.json @@ -9,8 +9,7 @@ "dependencies": { "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", - "buffer": "^6.0.3", - "fs": "^0.0.1-security" + "buffer": "^6.0.3" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/basics/rent/pinocchio/pnpm-lock.yaml b/basics/rent/pinocchio/pnpm-lock.yaml index 2c6f9fe46..9363e3fa8 100644 --- a/basics/rent/pinocchio/pnpm-lock.yaml +++ b/basics/rent/pinocchio/pnpm-lock.yaml @@ -17,9 +17,6 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -314,9 +311,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -977,8 +971,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/basics/repository-layout/native/package.json b/basics/repository-layout/native/package.json index 744189d47..419c05d20 100644 --- a/basics/repository-layout/native/package.json +++ b/basics/repository-layout/native/package.json @@ -8,7 +8,6 @@ }, "dependencies": { "@solana/web3.js": "^1.98.4", - "fs": "^0.0.1-security", "borsh": "^2.0.0" }, "devDependencies": { diff --git a/basics/repository-layout/native/pnpm-lock.yaml b/basics/repository-layout/native/pnpm-lock.yaml index 8484061eb..bd89fedcf 100644 --- a/basics/repository-layout/native/pnpm-lock.yaml +++ b/basics/repository-layout/native/pnpm-lock.yaml @@ -14,9 +14,6 @@ importers: borsh: specifier: ^2.0.0 version: 2.0.0 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -311,9 +308,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -974,8 +968,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/basics/transfer-sol/asm/package.json b/basics/transfer-sol/asm/package.json index fb3917956..3fe7a6e83 100644 --- a/basics/transfer-sol/asm/package.json +++ b/basics/transfer-sol/asm/package.json @@ -8,8 +8,7 @@ }, "dependencies": { "@solana/web3.js": "^1.47.3", - "buffer-layout": "^1.2.2", - "fs": "^0.0.1-security" + "buffer-layout": "^1.2.2" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/basics/transfer-sol/asm/pnpm-lock.yaml b/basics/transfer-sol/asm/pnpm-lock.yaml index d4f5f4012..6c50b56f4 100644 --- a/basics/transfer-sol/asm/pnpm-lock.yaml +++ b/basics/transfer-sol/asm/pnpm-lock.yaml @@ -14,9 +14,6 @@ importers: buffer-layout: specifier: ^1.2.2 version: 1.2.2 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -312,9 +309,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -975,8 +969,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/basics/transfer-sol/native/package.json b/basics/transfer-sol/native/package.json index 820e89222..76f859327 100644 --- a/basics/transfer-sol/native/package.json +++ b/basics/transfer-sol/native/package.json @@ -9,8 +9,7 @@ "dependencies": { "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", - "buffer-layout": "^1.2.2", - "fs": "^0.0.1-security" + "buffer-layout": "^1.2.2" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/basics/transfer-sol/native/pnpm-lock.yaml b/basics/transfer-sol/native/pnpm-lock.yaml index b02a4c0aa..fbf1d3e7a 100644 --- a/basics/transfer-sol/native/pnpm-lock.yaml +++ b/basics/transfer-sol/native/pnpm-lock.yaml @@ -17,9 +17,6 @@ importers: buffer-layout: specifier: ^1.2.2 version: 1.2.2 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -318,9 +315,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -983,8 +977,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/basics/transfer-sol/pinocchio/package.json b/basics/transfer-sol/pinocchio/package.json index 95b8ce314..9d60effd6 100644 --- a/basics/transfer-sol/pinocchio/package.json +++ b/basics/transfer-sol/pinocchio/package.json @@ -8,8 +8,7 @@ }, "dependencies": { "@solana/web3.js": "^1.98.4", - "buffer-layout": "^1.2.2", - "fs": "^0.0.1-security" + "buffer-layout": "^1.2.2" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/basics/transfer-sol/pinocchio/pnpm-lock.yaml b/basics/transfer-sol/pinocchio/pnpm-lock.yaml index a998ac7ec..3b5c8f709 100644 --- a/basics/transfer-sol/pinocchio/pnpm-lock.yaml +++ b/basics/transfer-sol/pinocchio/pnpm-lock.yaml @@ -14,9 +14,6 @@ importers: buffer-layout: specifier: ^1.2.2 version: 1.2.2 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -312,9 +309,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -975,8 +969,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/tokens/create-token/native/package.json b/tokens/create-token/native/package.json index 192560abc..0571d7cce 100644 --- a/tokens/create-token/native/package.json +++ b/tokens/create-token/native/package.json @@ -10,8 +10,7 @@ "@solana/spl-token": "^0.3.7", "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", - "buffer": "^6.0.3", - "fs": "^0.0.1-security" + "buffer": "^6.0.3" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/tokens/create-token/native/pnpm-lock.yaml b/tokens/create-token/native/pnpm-lock.yaml index f7f834f8d..df838d4ed 100644 --- a/tokens/create-token/native/pnpm-lock.yaml +++ b/tokens/create-token/native/pnpm-lock.yaml @@ -23,9 +23,6 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -464,9 +461,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -1401,8 +1395,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/tokens/nft-minter/native/package.json b/tokens/nft-minter/native/package.json index fc0ff32f7..88fef50d8 100644 --- a/tokens/nft-minter/native/package.json +++ b/tokens/nft-minter/native/package.json @@ -7,8 +7,7 @@ "@solana/spl-token": "^0.3.7", "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", - "buffer": "^6.0.3", - "fs": "^0.0.1-security" + "buffer": "^6.0.3" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/tokens/nft-minter/native/pnpm-lock.yaml b/tokens/nft-minter/native/pnpm-lock.yaml index d320451da..14a36cf59 100644 --- a/tokens/nft-minter/native/pnpm-lock.yaml +++ b/tokens/nft-minter/native/pnpm-lock.yaml @@ -23,9 +23,6 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -464,9 +461,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -1401,8 +1395,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/tokens/pda-mint-authority/native/package.json b/tokens/pda-mint-authority/native/package.json index 1acaada12..86f930d47 100644 --- a/tokens/pda-mint-authority/native/package.json +++ b/tokens/pda-mint-authority/native/package.json @@ -10,8 +10,7 @@ "@solana/spl-token": "^0.3.7", "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", - "buffer": "^6.0.3", - "fs": "^0.0.1-security" + "buffer": "^6.0.3" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/tokens/pda-mint-authority/native/pnpm-lock.yaml b/tokens/pda-mint-authority/native/pnpm-lock.yaml index 2c9ba7a31..2e778f9d7 100644 --- a/tokens/pda-mint-authority/native/pnpm-lock.yaml +++ b/tokens/pda-mint-authority/native/pnpm-lock.yaml @@ -23,9 +23,6 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -449,9 +446,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -1386,8 +1380,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/tokens/spl-token-minter/native/package.json b/tokens/spl-token-minter/native/package.json index fc0ff32f7..88fef50d8 100644 --- a/tokens/spl-token-minter/native/package.json +++ b/tokens/spl-token-minter/native/package.json @@ -7,8 +7,7 @@ "@solana/spl-token": "^0.3.7", "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", - "buffer": "^6.0.3", - "fs": "^0.0.1-security" + "buffer": "^6.0.3" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/tokens/spl-token-minter/native/pnpm-lock.yaml b/tokens/spl-token-minter/native/pnpm-lock.yaml index d320451da..14a36cf59 100644 --- a/tokens/spl-token-minter/native/pnpm-lock.yaml +++ b/tokens/spl-token-minter/native/pnpm-lock.yaml @@ -23,9 +23,6 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -464,9 +461,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -1401,8 +1395,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/tokens/token-2022/default-account-state/native/package.json b/tokens/token-2022/default-account-state/native/package.json index f2d985f31..4f6168781 100644 --- a/tokens/token-2022/default-account-state/native/package.json +++ b/tokens/token-2022/default-account-state/native/package.json @@ -10,8 +10,7 @@ "@solana/spl-token": "^0.3.7", "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", - "buffer": "^6.0.3", - "fs": "^0.0.1-security" + "buffer": "^6.0.3" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/tokens/token-2022/default-account-state/native/pnpm-lock.yaml b/tokens/token-2022/default-account-state/native/pnpm-lock.yaml index 38cfb96ee..f7c5fcffa 100644 --- a/tokens/token-2022/default-account-state/native/pnpm-lock.yaml +++ b/tokens/token-2022/default-account-state/native/pnpm-lock.yaml @@ -23,9 +23,6 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -452,9 +449,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -1389,8 +1383,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/tokens/token-2022/mint-close-authority/native/package.json b/tokens/token-2022/mint-close-authority/native/package.json index 675c97490..9630c9c52 100644 --- a/tokens/token-2022/mint-close-authority/native/package.json +++ b/tokens/token-2022/mint-close-authority/native/package.json @@ -10,8 +10,7 @@ "@solana/spl-token": "^0.3.7", "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", - "buffer": "^6.0.3", - "fs": "^0.0.1-security" + "buffer": "^6.0.3" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/tokens/token-2022/mint-close-authority/native/pnpm-lock.yaml b/tokens/token-2022/mint-close-authority/native/pnpm-lock.yaml index 8507d821d..18a6dbe99 100644 --- a/tokens/token-2022/mint-close-authority/native/pnpm-lock.yaml +++ b/tokens/token-2022/mint-close-authority/native/pnpm-lock.yaml @@ -23,9 +23,6 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -449,9 +446,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -1386,8 +1380,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/tokens/token-2022/multiple-extensions/native/package.json b/tokens/token-2022/multiple-extensions/native/package.json index f2d985f31..4f6168781 100644 --- a/tokens/token-2022/multiple-extensions/native/package.json +++ b/tokens/token-2022/multiple-extensions/native/package.json @@ -10,8 +10,7 @@ "@solana/spl-token": "^0.3.7", "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", - "buffer": "^6.0.3", - "fs": "^0.0.1-security" + "buffer": "^6.0.3" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/tokens/token-2022/multiple-extensions/native/pnpm-lock.yaml b/tokens/token-2022/multiple-extensions/native/pnpm-lock.yaml index 38cfb96ee..f7c5fcffa 100644 --- a/tokens/token-2022/multiple-extensions/native/pnpm-lock.yaml +++ b/tokens/token-2022/multiple-extensions/native/pnpm-lock.yaml @@ -23,9 +23,6 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -452,9 +449,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -1389,8 +1383,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/tokens/token-2022/non-transferable/native/package.json b/tokens/token-2022/non-transferable/native/package.json index 375fa1281..71fe29465 100644 --- a/tokens/token-2022/non-transferable/native/package.json +++ b/tokens/token-2022/non-transferable/native/package.json @@ -10,8 +10,7 @@ "@solana/spl-token": "^0.3.7", "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", - "buffer": "^6.0.3", - "fs": "^0.0.1-security" + "buffer": "^6.0.3" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/tokens/token-2022/non-transferable/native/pnpm-lock.yaml b/tokens/token-2022/non-transferable/native/pnpm-lock.yaml index 8507d821d..18a6dbe99 100644 --- a/tokens/token-2022/non-transferable/native/pnpm-lock.yaml +++ b/tokens/token-2022/non-transferable/native/pnpm-lock.yaml @@ -23,9 +23,6 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -449,9 +446,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -1386,8 +1380,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/tokens/token-2022/transfer-fee/native/package.json b/tokens/token-2022/transfer-fee/native/package.json index 375fa1281..71fe29465 100644 --- a/tokens/token-2022/transfer-fee/native/package.json +++ b/tokens/token-2022/transfer-fee/native/package.json @@ -10,8 +10,7 @@ "@solana/spl-token": "^0.3.7", "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", - "buffer": "^6.0.3", - "fs": "^0.0.1-security" + "buffer": "^6.0.3" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/tokens/token-2022/transfer-fee/native/pnpm-lock.yaml b/tokens/token-2022/transfer-fee/native/pnpm-lock.yaml index 8507d821d..18a6dbe99 100644 --- a/tokens/token-2022/transfer-fee/native/pnpm-lock.yaml +++ b/tokens/token-2022/transfer-fee/native/pnpm-lock.yaml @@ -23,9 +23,6 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -449,9 +446,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -1386,8 +1380,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true diff --git a/tokens/transfer-tokens/native/package.json b/tokens/transfer-tokens/native/package.json index fc0ff32f7..88fef50d8 100644 --- a/tokens/transfer-tokens/native/package.json +++ b/tokens/transfer-tokens/native/package.json @@ -7,8 +7,7 @@ "@solana/spl-token": "^0.3.7", "@solana/web3.js": "^1.98.4", "borsh": "^2.0.0", - "buffer": "^6.0.3", - "fs": "^0.0.1-security" + "buffer": "^6.0.3" }, "devDependencies": { "@types/bn.js": "^5.1.0", diff --git a/tokens/transfer-tokens/native/pnpm-lock.yaml b/tokens/transfer-tokens/native/pnpm-lock.yaml index d320451da..14a36cf59 100644 --- a/tokens/transfer-tokens/native/pnpm-lock.yaml +++ b/tokens/transfer-tokens/native/pnpm-lock.yaml @@ -23,9 +23,6 @@ importers: buffer: specifier: ^6.0.3 version: 6.0.3 - fs: - specifier: ^0.0.1-security - version: 0.0.1-security devDependencies: '@types/bn.js': specifier: ^5.1.0 @@ -464,9 +461,6 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} - fs@0.0.1-security: - resolution: {integrity: sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==} - fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} @@ -1401,8 +1395,6 @@ snapshots: fs.realpath@1.0.0: {} - fs@0.0.1-security: {} - fsevents@2.3.3: optional: true