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?
Feedback
from your docs it seems you can only sign with
How can this issue be resolved?
i am still struggling with this lol
Are you interested in working on this?