chore: updated lockfiles

This commit is contained in:
Conner Gallagher 2023-06-01 12:09:39 -06:00
parent a7e589c282
commit a2a8088d87
12 changed files with 8619 additions and 11 deletions

View File

@ -24,7 +24,7 @@ inputs:
pnpmVersion: pnpmVersion:
description: "the pnpm version to install" description: "the pnpm version to install"
required: false required: false
default: "7.28.0" default: "8.6.0"
runs: runs:
using: "composite" using: "composite"

View File

@ -20,7 +20,7 @@ jobs:
- name: Install pnpm - name: Install pnpm
uses: pnpm/action-setup@v2 uses: pnpm/action-setup@v2
with: with:
version: 7.28.0 version: 8.6.0
- name: Use Node.js - name: Use Node.js
uses: actions/setup-node@v3 uses: actions/setup-node@v3
with: with:

View File

@ -10,7 +10,7 @@
"compilerOptions": { "compilerOptions": {
"types": [ "types": [
"node", "node",
"jest" "mocha"
], ],
"module": "ESNext", "module": "ESNext",
"allowJs": true, "allowJs": true,

View File

@ -8,7 +8,7 @@
"fix": "pnpm -r fix" "fix": "pnpm -r fix"
}, },
"devDependencies": { "devDependencies": {
"@commitlint/config-conventional": "^17.0.2", "@commitlint/config-conventional": "^17.4.4",
"@switchboard-xyz/eslint-config": "latest", "@switchboard-xyz/eslint-config": "latest",
"@types/node": "^20.2.5", "@types/node": "^20.2.5",
"commitlint": "^17.4.2", "commitlint": "^17.4.2",
@ -19,11 +19,11 @@
"typescript": "^5.0.4" "typescript": "^5.0.4"
}, },
"engines": { "engines": {
"node": ">=14.0.0" "node": ">=16.0.0"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/switchboard-xyz/sbv2-solana.git" "url": "https://github.com/switchboard-xyz/sbv2-solana.git"
}, },
"packageManager": "pnpm@7.17.0" "packageManager": "pnpm@8.6.0"
} }

View File

@ -9,7 +9,7 @@ importers:
.: .:
devDependencies: devDependencies:
'@commitlint/config-conventional': '@commitlint/config-conventional':
specifier: ^17.0.2 specifier: ^17.4.4
version: 17.4.4 version: 17.4.4
'@switchboard-xyz/eslint-config': '@switchboard-xyz/eslint-config':
specifier: latest specifier: latest
@ -5982,7 +5982,7 @@ packages:
file:javascript/solana.js: file:javascript/solana.js:
resolution: {directory: javascript/solana.js, type: directory} resolution: {directory: javascript/solana.js, type: directory}
name: '@switchboard-xyz/solana.js' name: '@switchboard-xyz/solana.js'
version: 2.1.18 version: 2.2.0
engines: {node: '>=16.0.0', npm: '>=7.0.0'} engines: {node: '>=16.0.0', npm: '>=7.0.0'}
dependencies: dependencies:
'@coral-xyz/anchor': 0.27.0 '@coral-xyz/anchor': 0.27.0

2151
programs/anchor-buffer-parser/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

2151
programs/anchor-history-parser/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

2153
programs/anchor-vrf-lite-parser/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -9,7 +9,7 @@
}, },
"scripts": { "scripts": {
"lint": "eslint --ext .js,.json,.ts 'src/**' --fix", "lint": "eslint --ext .js,.json,.ts 'src/**' --fix",
"build": "node ../build.js anchor-vrf-parser 5Hhm5xKDiThfidbpqjJpKmMJEcKmjj5tEUNFpi2DzSvb", "build": "node ../build.js anchor-vrf-lite-parser 5Hhm5xKDiThfidbpqjJpKmMJEcKmjj5tEUNFpi2DzSvb",
"test": "npm run localnet && npm run network:create && npm run network:start & sleep 60 && anchor test --skip-local-validator", "test": "npm run localnet && npm run network:create && npm run network:start & sleep 60 && anchor test --skip-local-validator",
"test:dev": "npm run localnet && npm run network:create && npm run network:start:dev & sleep 15 && anchor test --skip-local-validator" "test:dev": "npm run localnet && npm run network:create && npm run network:start:dev & sleep 15 && anchor test --skip-local-validator"
}, },

View File

@ -40,7 +40,7 @@ pub mod anchor_vrf_lite_parser {
} }
#[repr(packed)] #[repr(packed)]
#[account(zero_copy(unsafe))] #[account(zero_copy)]
pub struct VrfClient { pub struct VrfClient {
pub bump: u8, pub bump: u8,
pub max_result: u64, pub max_result: u64,

2153
programs/anchor-vrf-parser/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -40,7 +40,7 @@ pub mod anchor_vrf_parser {
} }
#[repr(packed)] #[repr(packed)]
#[account(zero_copy(unsafe))] #[account(zero_copy)]
pub struct VrfClient { pub struct VrfClient {
pub bump: u8, pub bump: u8,
pub max_result: u64, pub max_result: u64,