It is important to understand that in order to receive funds, the Multisig account address (instead of the owner’s address) must be used as the receiver.
const safeSdk = await safeFactory.createSafe({
owners: ['0x1234...', '0xabcd...', '0x0987...'],
threshold: 2
})
// address to use as token receiver
const multisigAccountAddress = safeSdk.getAddress()
Assuming we have an ERC721-compliant contract and that the token has been created and assigned to another account:
Parameters
from: string
- the address from
which transfers the token identified by tokenId
to: string
- the safe address that will receive the token identified by tokenId
tokenId: BigNumber
- the id of the token will be transferred to address to
const erc721Token: Contract;
// address to use as token receiver
const multisigAccountAddress = safeSdk.getAddress()
await erc721Token.transferFrom(
from,
multisigAccountAddress,
tokenId
);
IMPORTANT: Only the current owner, an authorized operator, or the approved address can call this method, see ERC721
Go to top