Skip to content

Commit af5a944

Browse files
authored
Merge branch 'main' into fix/zizmor-security-fixes-20251110-101130
2 parents bc7ef91 + 0a954af commit af5a944

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

examples/test-tailwind-vck/src/app/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ export default function ImageUploadApp() {
6666
<VeChainKitProvider
6767
feeDelegation={{
6868
delegatorUrl: process.env.NEXT_PUBLIC_DELEGATOR_URL!,
69-
delegateAllTransactions: false,
7069
}}
7170
dappKit={{
7271
allowedWallets: ['veworld', 'wallet-connect', 'sync2'],

examples/test-tailwind-vck/src/app/style-test/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,6 @@ export default function StyleTest() {
325325
<VeChainKitProvider
326326
feeDelegation={{
327327
delegatorUrl: process.env.NEXT_PUBLIC_DELEGATOR_URL!,
328-
delegateAllTransactions: false,
329328
}}
330329
dappKit={{
331330
allowedWallets: ['veworld', 'wallet-connect', 'sync2'],

packages/vechain-kit/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ It offers:
3030
# Installation
3131

3232
```bash
33-
yarn add @tanstack/react-query@"^5.64.2" @chakra-ui/react@"^2.8.2" @vechain/dapp-kit-react@"1.5.0" @vechain/vechain-kit
33+
yarn add @tanstack/react-query@"^5.64.2" @chakra-ui/react@"^2.8.2" @vechain/dapp-kit-react@"2.0.4" @vechain/vechain-kit
3434
```
3535

3636
# Quick Start
@@ -40,15 +40,13 @@ yarn add @tanstack/react-query@"^5.64.2" @chakra-ui/react@"^2.8.2" @vechain/dapp
4040
```typescript
4141
'use client';
4242

43-
import VeChainKitProvider from '@vechain/vechain-kit';
43+
import { VeChainKitProvider } from '@vechain/vechain-kit';
4444

4545
export function VeChainKitProviderWrapper({ children }: Props) {
4646
return (
4747
<VechainKitProvider
4848
feeDelegation={{
4949
delegatorUrl: process.env.NEXT_PUBLIC_DELEGATOR_URL!,
50-
// set to false if you want to delegate ONLY social login transactions
51-
delegateAllTransactions: true,
5250
}}
5351
loginMethods={[
5452
{ method: 'vechain', gridColumn: 4 },

0 commit comments

Comments
 (0)