Skip to content

Commit fe2b65f

Browse files
authored
Merge pull request #2343 from eshon/main
Initial Safe multisig UI updates
2 parents 877a3d4 + 2b8ec22 commit fe2b65f

File tree

2 files changed

+40
-12
lines changed

2 files changed

+40
-12
lines changed

smart-contracts/advanced/multisig.md

Lines changed: 39 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,48 @@ Multisig wallets enable builders to integrate the following features into their
1818

1919
## Available multisig wallet implementations
2020

21-
There are several multisig wallet implementations built upon the FVM. Builders can integrate these multisig wallets into their applications today.
21+
There are several multisig wallet implementations on Filecoin. Builders can integrate these multisig wallets into their applications today.
2222

23-
### [Safe](https://safe.global/)
23+
### Filecoin Native Multisig
2424

25-
Safe is a popular smart account infrastructure provider that allows users to manage their digital assets securely. It is formally verified, secures over $100B in assets, and is used by more than 200 projects.
25+
The Filecoin Native [MultisigActor](/basics/the-blockchain/actors#multisigactor) is a built-in actor that does not interact directly with the Filecoin EVM. Like other Filecoin actors, native multisig addresses begin with `f2` and represent a group of transaction signers with a maximum of 256 signers. Signers may be external users or the MultisigActor itself and can include `f1` and `f3` [addresses](https://docs.filecoin.io/basics/the-blockchain/addresses).
2626

27-
> **Note**: The Safe.global web UI does not currently support Filecoin. Users can only interact with Safe on the Filecoin network using the CLI and Filecoin explorers.
27+
A [MultisigActor CLI](https://lotus.filecoin.io/lotus/manage/multisig/) is available from the Lotus CLI, and a web UI for MultisigActors is available at https://www.glif.io/en/multisig/.
2828

29-
**Safe Smart Contracts**
29+
### Safe multisig
3030

31-
Gnosis Safe’s smart contracts are live on the Filecoin Mainnet and Calibration testnet.
31+
[Safe](https://safe.global/) is a popular smart EVM multisig account infrastructure provider that allows users to manage their digital assets securely. It is non-custodial, formally verified, secures over $100B in assets, and is used by more than 200 projects. Safe has been deployed to the Filecoin EVM.
32+
33+
#### Safe UI
34+
35+
A web UI for the Safe multisig on Filecoin is available at:
36+
37+
- https://safe.filecoin.io - the default network is set to [Filecoin Mainnet](https://docs.filecoin.io/networks/mainnet)
38+
39+
![SafeUI](https://github.com/user-attachments/assets/450d925e-c280-4c0d-b5da-cdb148c146fd)
40+
41+
42+
#### Safe Troubleshooting
43+
44+
- **Signing a transaction** from an *account with no previous activity* on the Filecoin blockchain will fail. You can send a transaction to this account with zero funds to initiate its on-chain activity and the issue will not persist anymore.
45+
- **Executing a transaction** can produce gas estimation issues for *accounts that have a very small amount of funds* (that would not or barely cover the transaction).
46+
- **Due to transaction confirmation times** users may experience prolonged "processing" status in the UI.
47+
- **Migrating Safe addresses from other networks** is possible but if the previous address uses the L1 version of Safe Proxy a series of technical migration steps will be required. Contact support for more info.
48+
- **Safe-related support** can be found in the "Need Help?" section of the Safe web UI.
49+
50+
#### Safe Transaction Service
51+
52+
The [Safe transaction service](https://docs.safe.global/core-api/api-safe-transaction-service) on Filecoin is available at:
53+
- https://transaction.safe.filecoin.io on [Filecoin Mainnet](https://docs.filecoin.io/networks/mainnet)
54+
- https://transaction-testnet.safe.filecoin.io on [Filecoin Calibration testnet](https://docs.filecoin.io/networks/calibration)
55+
56+
- Note:
57+
- Faster finality is coming to Filecoin soon. For now, the Filecoin Safe transaction service sets `ETH_REORG_BLOCKS` to 60 blocks (i.e. Filecoin epochs) (30min) based on [FRC-0089](https://github.com/filecoin-project/FIPs/blob/master/FRCs/frc-0089.md) but users may want to wait 900 epochs (~7.5h) for full finality.
58+
59+
60+
#### Safe Smart Contracts
61+
62+
Safe’s multisig smart contracts are live on the Filecoin Mainnet and Calibration testnet.
3263

3364
| Name | Address | Mainnet | Calibration |
3465
| ------------------------------------------------------------------------------------------------------------------ | -------------------------------------------- | ------- | ----------- |
@@ -43,12 +74,9 @@ Gnosis Safe’s smart contracts are live on the Filecoin Mainnet and Calibration
4374
| [SafeL2](https://filecoin.blockscout.com/address/0x29fcB43b46531BcA003ddC8FCB67FFE91900C762) | `0x29fcB43b46531BcA003ddC8FCB67FFE91900C762` | ✔️ | ✔️ |
4475
| [Safe](https://filecoin.blockscout.com/address/0x41675C099F32341bf84BFc5382aF534df5C7461a) | `0x41675C099F32341bf84BFc5382aF534df5C7461a` | ✔️ | ✔️ |
4576

46-
#### **Further Gnosis Safe resources**
47-
48-
* [Safe Smart Account Docs](https://docs.safe.global/advanced/smart-account-overview)
49-
* [Create Your Own Multisig via. the Safe CLI](https://docs.safe.global/advanced/cli-overview)
50-
* [Safe - Deploy a Recovery Safe Example](https://docs.safe.global/advanced/cli-guides/recovery-safe-deployment)
77+
#### **Further Safe resources**
5178

79+
* [Safe Docs](https://docs.safe.global/home/what-is-safe)
5280

5381

5482
[Was this page helpful?](https://airtable.com/apppq4inOe4gmSSlk/pagoZHC2i1iqgphgl/form?prefill\_Page+URL=https://docs.filecoin.io/smart-contracts/advanced/multisig)

smart-contracts/filecoin-evm-runtime/filforwarder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ First, we need to grab the FilFowarder kit and install the dependencies:
7878
1. Clone the FilForwarder repository and install the dependencies:
7979

8080
```
81-
git clone https://github.com/lotus-web3/FilForwarder
81+
git clone [https://github.com/FilOzone/FilForwarder](https://github.com/FilOzone/FilForwarder)
8282
cd FilForwarder
8383
```
8484

0 commit comments

Comments
 (0)