shadows-safe-core-sdk
v1.3.1-beta.4
Published
Safe Core SDK
Downloads
13
Maintainers
Readme
Safe Core SDK
Software development kit that facilitates the interaction with the Gnosis Safe contracts.
Table of contents
Installation
Install the package with yarn or npm:
yarn install
npm install
Build
Build the package with yarn or npm:
yarn build
npm build
Getting Started
The following steps show how to set up the Safe Core SDK, deploy a new Safe, create a Safe transaction, generate the required signatures from owners and execute the transaction. However, using the Safe Core SDK alone will not allow for the collection of owner signatures off-chain. To do this and be able to see and confirm the pending transactions shown in the Gnosis Safe Web App, it is recommended that you follow this other guide that covers the use of the Safe Core SDK, combined with the Safe Service Client.
1. Set up the SDK using Ethers
or Web3
Using ethers.js
If the app integrating the SDK is using
Ethers
v5
, create an instance of theEthersAdapter
.owner1
is the Ethereum account we are connecting and the one who will sign the transactions.import { ethers } from 'ethers' import { EthersAdapter } from '@gnosis.pm/safe-core-sdk' const web3Provider = // ... const provider = new ethers.providers.Web3Provider(web3Provider) const owner1 = provider.getSigner(0) const ethAdapterOwner1 = new EthersAdapter({ ethers, signer: owner1 })
Using web3.js
If the app integrating the SDK is using
Web3
v1
, create an instance of theWeb3Adapter
.import Web3 from 'web3' import { Web3Adapter } from '@gnosis.pm/safe-core-sdk' const ethAdapterOwner1 = new Web3Adapter({ web3, signerAddress: await owner1.getAddress() })
2. Deploy a new Safe
To deploy a new Safe account instantiate the SafeFactory
class and call the deploySafe
method with the right params to configure the new Safe. This includes defining the list of owners and the threshold of the Safe. A Safe account with three owners and threshold equal three will be used as the starting point for this example but any Safe configuration is valid.
import { Safe, SafeFactory, SafeAccountConfig } from '@gnosis.pm/safe-core-sdk'
const safeFactory = await SafeFactory.create({ ethAdapter })
const owners = ['0x<address>', '0x<address>', '0x<address>']
const threshold = 3
const safeAccountConfig: SafeAccountConfig = {
owners,
threshold,
// ...
}
const safeSdk: Safe = await safeFactory.deploySafe(safeAccountConfig)
The deploySafe
method executes a transaction from the owner1
account, deploys a new Safe and returns an instance of the Safe Core SDK connected to the new Safe. Check the deploySafe
method in the API Reference for more details on additional configuration parameters.
Call the getAddress
method, for example, to check the address of the newly deployed Safe.
const newSafeAddress = safeSdk.getAddress()
To instantiate the Safe Core SDK from an existing Safe just pass to it an instance of the EthAdapter
class and the Safe address.
import Safe from '@gnosis.pm/safe-core-sdk'
const safeSdk: Safe = await Safe.create({ ethAdapter: ethAdapterOwner1, safeAddress })
Check the create
method in the API Reference for more details on additional configuration parameters.
3. Create a Safe transaction
import { SafeTransactionDataPartial } from '@gnosis.pm/safe-core-sdk-types'
const transaction: SafeTransactionDataPartial = {
to: '0x<address>',
value: '<eth_value_in_wei>',
data: '0x<data>'
}
const safeTransaction = await safeSdk.createTransaction(transaction)
Check the createTransaction
method in the API Reference for additional details on creating MultiSend transactions.
Before executing this transaction, it must be signed by the owners and this can be done off-chain or on-chain. In this example owner1
will sign it off-chain, owner2
will sign it on-chain and owner3
will execute it (the executor also signs the transaction transparently).
3.a. Off-chain signatures
The owner1
account signs the transaction off-chain.
const owner1Signature = await safeSdk.signTransaction(safeTransaction)
Because the signature is off-chain, there is no interaction with the contract and the signature becomes available at safeTransaction.signatures
.
3.b. On-chain signatures
To connect owner2
to the Safe we need to create a new instance of the class EthAdapter
passing to its constructor the owner we would like to connect. After owner2
account is connected to the SDK as a signer the transaction hash will be approved on-chain.
const ethAdapterOwner2 = new EthersAdapter({ ethers, signer: owner2 })
const safeSdk2 = await safeSdk.connect({ ethAdapter: ethAdapterOwner2, safeAddress })
const txHash = await safeSdk2.getTransactionHash(safeTransaction)
const approveTxResponse = await safeSdk2.approveTransactionHash(txHash)
await approveTxResponse.transactionResponse?.wait()
4. Transaction execution
Lastly, owner3
account is connected to the SDK as a signer and executor of the Safe transaction to execute it.
const ethAdapterOwner3 = new EthersAdapter({ ethers, signer: owner3 })
const safeSdk3 = await safeSdk2.connect({ ethAdapter: ethAdapterOwner3, safeAddress })
const executeTxResponse = await safeSdk3.executeTransaction(safeTransaction)
await executeTxResponse.transactionResponse?.wait()
All the signatures used to execute the transaction are now available at safeTransaction.signatures
.
Safe Factory API Reference
create
Returns an instance of the Safe Factory.
import { SafeFactory } from '@gnosis.pm/safe-core-sdk'
const safeFactory = await SafeFactory.create({ ethAdapter })
The
isL1SafeMasterCopy
flagThere are two versions of the Safe contracts: GnosisSafe.sol that does not trigger events in order to save gas and GnosisSafeL2.sol that does, which is more appropriate for L2 networks.
By default
GnosisSafe.sol
will be only used on Ethereum Mainnet. For the rest of the networks where the Safe contracts are already deployed, theGnosisSafeL2.sol
contract will be used unless you add theisL1SafeMasterCopy
flag to force the use of theGnosisSafe.sol
contract.const safeFactory = await SafeFactory.create({ ethAdapter, isL1SafeMasterCopy: true })
The
contractNetworks
propertyIf the Safe contracts are not deployed to your current network, the
contractNetworks
property will be required to point to the addresses of the Safe contracts previously deployed by you.import { ContractNetworksConfig } from '@gnosis.pm/safe-core-sdk' const id = await ethAdapter.getChainId() const contractNetworks: ContractNetworksConfig = { [id]: { multiSendAddress: '<MULTI_SEND_ADDRESS>', safeMasterCopyAddress: '<MASTER_COPY_ADDRESS>', safeProxyFactoryAddress: '<PROXY_FACTORY_ADDRESS>' } } const safeFactory = await SafeFactory.create({ ethAdapter, contractNetworks })
The
safeVersion
propertyThe
SafeFactory
constructor also accepts thesafeVersion
property to specify the Safe contract version that will be deployed. This string can take the values1.1.1
,1.2.0
or1.3.0
. If not specified, the most recent contract version will be used by default.const safeVersion = 'X.Y.Z' const safeFactory = await SafeFactory.create({ ethAdapter, safeVersion })
deploySafe
Deploys a new Safe and returns an instance of the Safe Core SDK connected to the deployed Safe. The address of the Master Copy, Safe contract version and the contract (GnosisSafe.sol
or GnosisSafeL2.sol
) of the deployed Safe will depend on the initialization of the safeFactory
instance.
const safeAccountConfig: SafeAccountConfig = {
owners,
threshold,
to, // Optional
data, // Optional
fallbackHandler, // Optional
paymentToken, // Optional
payment, // Optional
paymentReceiver // Optional
}
const safeSdk = await safeFactory.deploySafe(safeAccountConfig)
This method can optionally receive the safeDeploymentConfig
parameter to define the saltNonce
.
const safeAccountConfig: SafeAccountConfig = {
owners,
threshold,
to, // Optional
data, // Optional
fallbackHandler, // Optional
paymentToken, // Optional
payment, // Optional
paymentReceiver // Optional
}
const safeDeploymentConfig: SafeDeploymentConfig = { saltNonce }
const safeSdk = await safeFactory.deploySafe(safeAccountConfig, safeDeploymentConfig)
Safe Core SDK API Reference
create
Returns an instance of the Safe Core SDK connected to the safeAddress
.
import Safe from '@gnosis.pm/safe-core-sdk'
const safeSdk = await Safe.create({ ethAdapter, safeAddress })
The
isL1SafeMasterCopy
flagThere are two versions of the Safe contracts: GnosisSafe.sol that does not trigger events in order to save gas and GnosisSafeL2.sol that does, which is more appropriate for L2 networks.
By default
GnosisSafe.sol
will be only used on Ethereum Mainnet. For the rest of the networks where the Safe contracts are already deployed, theGnosisSafeL2.sol
contract will be used unless you add theisL1SafeMasterCopy
flag to force the use of theGnosisSafe.sol
contract.const safeSdk = await Safe.create({ ethAdapter, safeAddress, isL1SafeMasterCopy: true })
The
contractNetworks
propertyIf the Safe contracts are not deployed to your current network, the
contractNetworks
property will be required to point to the addresses of the Safe contracts previously deployed by you.import { ContractNetworksConfig } from '@gnosis.pm/safe-core-sdk' const id = await ethAdapter.getChainId() const contractNetworks: ContractNetworksConfig = { [id]: { multiSendAddress: '<MULTI_SEND_ADDRESS>', safeMasterCopyAddress: '<MASTER_COPY_ADDRESS>', safeProxyFactoryAddress: '<PROXY_FACTORY_ADDRESS>' } } const safeSdk = await Safe.create({ ethAdapter, safeAddress, contractNetworks })
connect
Returns a new instance of the Safe Core SDK connected to the safeAddress
.
const safeSdk2 = await safeSdk.connect({ ethAdapter, safeAddress })
The
isL1SafeMasterCopy
flagThere are two versions of the Safe contracts: GnosisSafe.sol that does not trigger events in order to save gas and GnosisSafeL2.sol that does, which is more appropriate for L2 networks.
By default
GnosisSafe.sol
will be only used on Ethereum Mainnet. For the rest of the networks where the Safe contracts are already deployed, theGnosisSafeL2.sol
contract will be used unless you add theisL1SafeMasterCopy
flag to force the use of theGnosisSafe.sol
contract.const safeSdk = await Safe.connect({ ethAdapter, safeAddress, isL1SafeMasterCopy: true })
The
contractNetworks
propertyIf the Safe contracts are not deployed to your current network, the
contractNetworks
property will be required to point to the addresses of the Safe contracts previously deployed by you.const contractNetworks: ContractNetworksConfig = { [chainId]: { multiSendAddress: '<MULTI_SEND_ADDRESS>', safeMasterCopyAddress: '<MASTER_COPY_ADDRESS>', safeProxyFactoryAddress: '<PROXY_FACTORY_ADDRESS>' } } const safeSdk = await Safe.connect({ ethAdapter, safeAddress, contractNetworks })
getAddress
Returns the address of the current Safe Proxy contract.
const address = safeSdk.getAddress()
getContractVersion
Returns the Safe Master Copy contract version.
const contractVersion = await safeSdk.getContractVersion()
getOwners
Returns the list of Safe owner accounts.
const owners = await safeSdk.getOwners()
getNonce
Returns the Safe nonce.
const nonce = await safeSdk.getNonce()
getThreshold
Returns the Safe threshold.
const threshold = await safeSdk.getThreshold()
getChainId
Returns the chainId of the connected network.
const chainId = await safeSdk.getChainId()
getBalance
Returns the ETH balance of the Safe.
const balance = await safeSdk.getBalance()
getModules
Returns the list of addresses of all the enabled Safe modules.
const modules = await safeSdk.getModules()
isModuleEnabled
Checks if a specific Safe module is enabled for the current Safe.
const isEnabled = await safeSdk.isModuleEnabled(moduleAddress)
isOwner
Checks if a specific address is an owner of the current Safe.
const isOwner = await safeSdk.isOwner(address)
createTransaction
Returns a Safe transaction ready to be signed by the owners and executed. The Safe Core SDK supports the creation of single Safe transactions but also MultiSend transactions.
Single transactions
This method can take an object of type
SafeTransactionDataPartial
that represents the transaction we want to execute (once the signatures are collected). It accepts some optional properties as follows.import { SafeTransactionDataPartial } from '@gnosis.pm/safe-core-sdk-types' const transaction: SafeTransactionDataPartial = { to, data, value, operation, // Optional safeTxGas, // Optional baseGas, // Optional gasPrice, // Optional gasToken, // Optional refundReceiver, // Optional nonce // Optional } const safeTransaction = await safeSdk.createTransaction(transaction)
MultiSend transactions
This method can take an array of
MetaTransactionData
objects that represent the multiple transactions we want to include in our MultiSend transaction. If we want to specify some of the optional properties in our MultiSend transaction, we can pass a second argument to thecreateTransaction
method with theSafeTransactionOptionalProps
object.const transactions: MetaTransactionData[] = [ { to, data, value, operation // Optional }, { to, data, value, operation // Optional }, // ... ] const safeTransaction = await safeSdk.createTransaction(transactions)
This method can also receive the
options
parameter to set the optional properties in the MultiSend transaction:const transactions: MetaTransactionData[] = [ { to, data, value, operation // Optional }, { to, data, value, operation // Optional }, // ... ] const options: SafeTransactionOptionalProps = { safeTxGas, // Optional baseGas, // Optional gasPrice, // Optional gasToken, // Optional refundReceiver, // Optional nonce // Optional } const safeTransaction = await safeSdk.createTransaction(transactions, options)
If the optional properties are not manually set, the Safe transaction returned will have the default value for each one:
operation
:OperationType.Call
(0) is the default value.safeTxGas
: The right gas estimation is the default value.baseGas
: 0 is the default value.gasPrice
: 0 is the default value.gasToken
: 0x address is the default value.refundReceiver
: 0x address is the default value.nonce
: The current Safe nonce is the default value.
Read more about the Safe transaction properties.
createRejectionTransaction
Returns a Safe transaction ready to be signed by the owners that invalidates the pending Safe transaction/s with a specific nonce.
const transaction: SafeTransactionDataPartial = {
// ...
}
const safeTransaction = await safeSdk.createTransaction(transaction)
const rejectionTransaction = await safeSdk.createRejectionTransaction(safeTransaction.data.nonce)
getTransactionHash
Returns the transaction hash of a Safe transaction.
const transaction: SafeTransactionDataPartial = {
// ...
}
const safeTransaction = await safeSdk.createTransaction(transaction)
const txHash = await safeSdk.getTransactionHash(safeTransaction)
signTransactionHash
Signs a hash using the current owner account.
const transaction: SafeTransactionDataPartial = {
// ...
}
const safeTransaction = await safeSdk.createTransaction(transaction)
const txHash = await safeSdk.getTransactionHash(safeTransaction)
const signature = await safeSdk.signTransactionHash(txHash)
signTransaction
Adds the signature of the current owner to the Safe transaction object.
const transaction: SafeTransactionDataPartial = {
// ...
}
const safeTransaction = await safeSdk.createTransaction(transaction)
await safeSdk.signTransaction(safeTransaction)
approveTransactionHash
Approves a hash on-chain using the current owner account.
const transaction: SafeTransactionDataPartial = {
// ...
}
const safeTransaction = await safeSdk.createTransaction(transaction)
const txHash = await safeSdk.getTransactionHash(safeTransaction)
const txResponse = await safeSdk.approveTransactionHash(txHash)
await txResponse.transactionResponse?.wait()
getOwnersWhoApprovedTx
Returns a list of owners who have approved a specific Safe transaction.
const transaction: SafeTransactionDataPartial = {
// ...
}
const safeTransaction = await safeSdk.createTransaction(transaction)
const txHash = await safeSdk.getTransactionHash(safeTransaction)
const owners = await safeSdk.getOwnersWhoApprovedTx(txHash)
getEnableModuleTx
Returns a Safe transaction ready to be signed that will enable a Safe module.
const safeTransaction = await safeSdk.getEnableModuleTx(moduleAddress)
const txResponse = await safeSdk.executeTransaction(safeTransaction)
await txResponse.transactionResponse?.wait()
This method can optionally receive the options
parameter:
const options: SafeTransactionOptionalProps = {
safeTxGas, // Optional
baseGas, // Optional
gasPrice, // Optional
gasToken, // Optional
refundReceiver, // Optional
nonce // Optional
}
const safeTransaction = await safeSdk.getEnableModuleTx(moduleAddress, options)
getDisableModuleTx
Returns a Safe transaction ready to be signed that will disable a Safe module.
const safeTransaction = await safeSdk.getDisableModuleTx(moduleAddress)
const txResponse = await safeSdk.executeTransaction(safeTransaction)
await txResponse.transactionResponse?.wait()
This method can optionally receive the options
parameter:
const options: SafeTransactionOptionalProps = { ... }
const safeTransaction = await safeSdk.getDisableModuleTx(moduleAddress, options)
getAddOwnerTx
Returns the Safe transaction to add an owner and optionally change the threshold.
const params: AddOwnerTxParams = {
ownerAddress,
threshold // Optional. If `threshold` is not provided the current threshold will not change.
}
const safeTransaction = await safeSdk.getAddOwnerTx(params)
const txResponse = await safeSdk.executeTransaction(safeTransaction)
await txResponse.transactionResponse?.wait()
This method can optionally receive the options
parameter:
const options: SafeTransactionOptionalProps = { ... }
const safeTransaction = await safeSdk.getAddOwnerTx(params, options)
getRemoveOwnerTx
Returns the Safe transaction to remove an owner and optionally change the threshold.
const params: RemoveOwnerTxParams = {
ownerAddress,
newThreshold // Optional. If `newThreshold` is not provided, the current threshold will be decreased by one.
}
const safeTransaction = await safeSdk.getRemoveOwnerTx(params)
const txResponse = await safeSdk.executeTransaction(safeTransaction)
await txResponse.transactionResponse?.wait()
This method can optionally receive the options
parameter:
const options: SafeTransactionOptionalProps = { ... }
const safeTransaction = await safeSdk.getRemoveOwnerTx(params, options)
getSwapOwnerTx
Returns the Safe transaction to replace an owner of the Safe with a new one.
const params: SwapOwnerTxParams = {
oldOwnerAddress,
newOwnerAddress
}
const safeTransaction = await safeSdk.getSwapOwnerTx(params)
const txResponse = await safeSdk.executeTransaction(safeTransaction)
await txResponse.transactionResponse?.wait()
This method can optionally receive the options
parameter:
const options: SafeTransactionOptionalProps = { ... }
const safeTransaction = await safeSdk.getSwapOwnerTx(params, options)
getChangeThresholdTx
Returns the Safe transaction to change the threshold.
const safeTransaction = await safeSdk.getChangeThresholdTx(newThreshold)
const txResponse = await safeSdk.executeTransaction(safeTransaction)
await txResponse.transactionResponse?.wait()
This method can optionally receive the options
parameter:
const options: SafeTransactionOptionalProps = { ... }
const safeTransaction = await safeSdk.getChangeThresholdTx(newThreshold, options)
executeTransaction
Executes a Safe transaction.
const transaction: SafeTransactionDataPartial = {
// ...
}
const safeTransaction = await safeSdk.createTransaction(transaction)
const txResponse = await safeSdk.executeTransaction(safeTransaction)
await txResponse.transactionResponse?.wait()
Optionally, gasLimit
and gasPrice
values can be passed as execution options, avoiding the gas estimation.
const options: TransactionOptions = {
gasLimit,
gasPrice // Optional
}
const txResponse = await safeSdk.executeTransaction(safeTransaction, options)
License
This library is released under MIT.
Contributors
- Germán Martínez (germartinez)