@lit-protocol/vincent-ability-transaction-signer
v0.0.7-mma
Published
## Overview
Readme
Vincent Ability: Transaction Signer
Overview
The Transaction Signer Ability enables Vincent Agent Wallets to sign EVM transactions utilizing the Vincent ecosystem to govern who can request signatures, as well as what's included in the transactions.
This Vincent Ability is intended to be used with Vincent Policies, such as the @lit-protocol/vincent-policy-contract-whitelist policy, to provide protections such as only signing transactions that interact with specific contracts and/or call specific functions on contract.
How It Works
The Transaction Signer Ability is built using the Vincent Ability SDK and provides a secure way to sign Ethereum transactions. Here's how it operates:
- Input: Accepts a serialized unsigned EVM transaction
- Parsing: Uses
ethers.utils.parseTransactionto deserialize and validate the transaction structure- Important: All properties of the transaction are expected to be provided, including
nonce,gasPrice,gasLimit, etc. The Ability will not fetch these values from the network on your behalf.
- Important: All properties of the transaction are expected to be provided, including
- Signing: The Vincent Agent Wallet (PKP (Programmable Key Pair)) signs the transaction within the Lit Action environment
- Output: Returns both the signed transaction hex and a deserialized version with signature components
Workflow
Precheck Phase:
- Deserializes the input transaction
- Validates transaction structure
- Executes any registered Vincent Policy to validate the transaction meets the policy requirements
- Returns deserialized transaction details if successful
Execution Phase:
- Performs the same validation as the precheck phase
- Signs the transaction using the Agent Wallet
- Returns both the signed transaction ready for broadcast, and the deserialized signed transaction
Using the Ability
See the comprehensive E2E test in contract-whitelist.spec.ts for a complete example of:
- Setting up permissions and the Contract Whitelist Policy
- Executing the Transaction Signer Ability
- Validating the signed transaction
- Broadcasting the signed transaction to the network
import { getVincentAbilityClient } from '@lit-protocol/vincent-app-sdk/abilityClient';
import { bundledVincentAbility } from '@lit-protocol/vincent-ability-transaction-signer';
// Create ability client
const abilityClient = getVincentAbilityClient({
bundledVincentAbility: bundledVincentAbility,
ethersSigner: yourEthersSigner,
});
// Create a transaction
const transaction = {
to: '0x4200000000000000000000000000000000000006', // Base WETH
value: '0x00',
data: '0xa9059cbb...', // transfer function call
chainId: 8453,
nonce: 0,
gasPrice: '0x...',
gasLimit: '0x...',
};
// Serialize the transaction
const serializedTx = ethers.utils.serializeTransaction(transaction);
const precheckResult = await abilityClient.precheck(
{
serializedTransaction: serializedTx,
},
{
delegatorPkpEthAddress: '0x...', // The Agent Wallet PKP that will sign
},
);
if (precheckResult.success) {
const { deserializedUnsignedTransaction } = precheckResult.result;
// Use the deserialized transaction
}
// Execute the ability
const executeResult = await abilityClient.execute(
{
serializedTransaction: serializedTx,
},
{
delegatorPkpEthAddress: '0x...', // The Agent Wallet PKP that will sign
},
);
if (executeResult.success) {
const { signedTransaction, deserializedSignedTransaction } = executeResult.result;
// Use the signed transaction
}Input/Output Schemas
Ability Parameters
{
serializedTransaction: string; // The serialized unsigned transaction
}Precheck Success Output
{
deserializedUnsignedTransaction: {
to?: string;
nonce?: number;
gasLimit: string;
gasPrice?: string;
data: string;
value: string;
chainId: number;
type?: number;
accessList?: any[];
maxPriorityFeePerGas?: string;
maxFeePerGas?: string;
}
}Execution Success Output
{
signedTransaction: string; // The signed transaction ready for broadcast
deserializedSignedTransaction: {
hash?: string;
to: string;
from: string;
nonce: number;
gasLimit: string;
gasPrice?: string;
data: string;
value: string;
chainId: number;
v: number;
r: string;
s: string;
type?: number;
accessList?: any[];
maxPriorityFeePerGas?: string;
maxFeePerGas?: string;
}
}Building
Run pnpx nx build ability-transaction-signer to build the Ability.
Running E2E tests
Run pnpx nx run abilities-e2e:test-e2e packages/apps/abilities-e2e/test-e2e/contract-whitelist.spec.ts to execute the E2E tests via Jest.
Contributing
Please see CONTRIBUTING.md for guidelines on how to contribute to this project.
License
This project is licensed under the MIT License - see the LICENSE file for details.
