11 questions
0
votes
0
answers
70
views
Gnosis Safe - Enable module during safe creation
Here is my contracts:
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity ^0.8.20;
import "hardhat/console.sol";
// import console.log;
interface ISafe {
...
1
vote
2
answers
92
views
Problem with signature sent to Safe API POST request
A loom video of the problem faced:
https://www.loom.com/share/4a054656f4bb4c329983394600058a01?sid=6de4f0c4-039e-4f45-9132-584f19cec13b
I create a signer from my Metamask Private Key and then create a ...
1
vote
2
answers
399
views
Process for deploying the Safe web app on a custom EVM-compatible network
My objective is to deploy the Safe app on a custom EVM-compatible network, using the safe-infrastructure repository. I do not intend for the custom network to be listed alongside officially supported ...
1
vote
1
answer
253
views
How does a smart contract like a Safe Multisig create a signature?
With EIP 1271 it seems relatively straightforward, have a read only method that returns a magic value, but in the Safe contracts, it allows a signer to be an EOA, as long as the r and s values of the ...
0
votes
1
answer
446
views
Things that I didn't understand during the deployment of the Gnosis Safe contracts on an EVM-based chain
I want to check my assumptions on things that I didn't fully understand during the deployment of the Gnosis Safe contracts on an EVM-based chain.
I would appreciate it if you could help me verify my ...
0
votes
2
answers
88
views
how do I create a signature for the executeAllowanceTransfer function in safe modules AllowanceModule?
I am trying to create a signature that is accepted by the executeAllowanceTransfer function. I can't workout how to generate a signature that is approved in the allowance as I keep getting the return ...
0
votes
1
answer
1k
views
How can I start a new transaction on an existing Gnosis Safe from my react app?
Currently I have a React app which connects to a Metamask wallet. On clicking a 'Transfer' button, it transfers some ethers from the connected Metamask wallet to the one input by the user. All of this ...
0
votes
1
answer
331
views
How to integrate Gnosis Wallet into my Dapp?
My dApp already supports MetaMask, but does anyone have any helpful documentation that allows for my users to connect using a Gnosis Safe wallet as well?
As of now, I have Wallet Connect integrated, ...
0
votes
1
answer
826
views
Gnosis Safe Contracts : Error deploying to custom Network
There is an error in deploying to custom network using deterministic deployment approach. The custom network is a evm based network. By adding PK and NODE_URL in the .env the code is expected to ...
1
vote
1
answer
365
views
How to encode initializer in gnosis-safe proxy contract?
currently i start learning gnosis-safe contracts i have a small doubt in gnosis-proxy contract how to encode initializer in createProxyWithNonce function.
Reference transaction id : https://rinkeby....
3
votes
2
answers
2k
views
Is there a way to use multisig without smart contracts on Ethereum?
I have already found many wallets that offer multisig smart contract deployment. But this way is very expensive and slow, because it requires a lot of transactions.
I think there is another way. For ...