Skip to content

Commit 87a932f

Browse files
committed
Merge branch 'master' into feature/lit-3748-naga
2 parents fd762f7 + e62234d commit 87a932f

File tree

29 files changed

+246
-197
lines changed

29 files changed

+246
-197
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
33
"useNx": true,
44
"useWorkspaces": true,
5-
"version": "6.6.0"
5+
"version": "6.7.0"
66
}

local-tests/setup/shiva-client.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { LitContractResolverContext } from '@lit-protocol/types';
22
import { ethers } from 'ethers';
3+
import { PKPPermissions } from '../../dist/packages/contracts-sdk/src/abis/PKPPermissions.sol/PKPPermissions';
34
import {
45
TestNetCreateRequest,
56
TestNetInfo,
@@ -97,6 +98,31 @@ export class TestnetClient {
9798
skipFetchSetup: true,
9899
}),
99100
environment: 0, // test deployment uses env value 0 in test common
101+
contractContext: {
102+
Allowlist: {},
103+
Multisender: {},
104+
Staking: {
105+
abi: JSON.parse(testNetConfig.contractAbis.staking),
106+
},
107+
StakingBalances: {
108+
abi: JSON.parse(testNetConfig.contractAbis.stakingBalances),
109+
},
110+
PKPNFT: {
111+
abi: JSON.parse(testNetConfig.contractAbis.pkpnft),
112+
},
113+
PKPPermissions: {
114+
abi: JSON.parse(testNetConfig.contractAbis.pkpPermissions),
115+
},
116+
PKPHelper: {
117+
abi: JSON.parse(testNetConfig.contractAbis.pkpHelper),
118+
},
119+
LITToken: {
120+
abi: JSON.parse(testNetConfig.contractAbis.litToken),
121+
},
122+
PKPNFTMetadata: {},
123+
RateLimitNFT: {},
124+
PubkeyRouter: {},
125+
},
100126
};
101127
return networkContext;
102128
}

packages/access-control-conditions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"tags": [
2222
"universal"
2323
],
24-
"version": "6.6.0",
24+
"version": "6.7.0",
2525
"main": "./dist/src/index.js",
2626
"typings": "./dist/src/index.d.ts"
2727
}

packages/auth-browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"tags": [
3131
"browser"
3232
],
33-
"version": "6.6.0",
33+
"version": "6.7.0",
3434
"main": "./dist/src/index.js",
3535
"typings": "./dist/src/index.d.ts"
3636
}

packages/auth-helpers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"crypto": false,
2626
"stream": false
2727
},
28-
"version": "6.6.0",
28+
"version": "6.7.0",
2929
"main": "./dist/src/index.js",
3030
"typings": "./dist/src/index.d.ts"
3131
}

packages/constants/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"tags": [
2121
"universal"
2222
],
23-
"version": "6.6.0",
23+
"version": "6.7.0",
2424
"main": "./dist/src/index.js",
2525
"typings": "./dist/src/index.d.ts"
2626
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '6.6.0';
1+
export const version = '6.7.0';

packages/contracts-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"tags": [
2727
"universal"
2828
],
29-
"version": "6.6.0",
29+
"version": "6.7.0",
3030
"main": "./dist/src/index.js",
3131
"typings": "./dist/src/index.d.ts"
3232
}

0 commit comments

Comments
 (0)