-
Notifications
You must be signed in to change notification settings - Fork 84
Open
Labels
nextra-feedbackFeedback submitted through NextraFeedback submitted through Nextra
Description
Feedback
from your docs it seems you can only sign with
// Connect OWNER_1_ADDRESS
protocolKit = await protocolKit.connect({
provider: RPC_URL,
signer: OWNER_1_PRIVATE_KEY
})
// Sign the safeTransaction with OWNER_1_ADDRESS
// After this, the safeTransaction contains the signature from OWNER_1_ADDRESS
safeTransaction = await protocolKit.signTransaction(
safeTransaction,
SigningMethod.ETH_SIGN
)
// Connect OWNER_2_ADDRESS
protocolKit = await protocolKit.connect({
provider: RPC_URL,
signer: OWNER_2_PRIVATE_KEY
})
// Sign the safeTransaction with OWNER_2_ADDRESS
// After this, the safeTransaction contains the signature from OWNER_1_ADDRESS and OWNER_2_ADDRESS
safeTransaction = await protocolKit.signTransaction(
safeTransaction,
SigningMethod.ETH_SIGN_TYPED_DATA_V4
)
How can this issue be resolved?
i am still struggling with this lol
Are you interested in working on this?
- I would like to implement/fix this issue
Metadata
Metadata
Assignees
Labels
nextra-feedbackFeedback submitted through NextraFeedback submitted through Nextra