Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(protocol-kit): Add Abitype for Safe Contract v1.2.0 + ethers.js #627

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion packages/protocol-kit/scripts/generateTypechainFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,10 @@ function generateTypes(typechainTarget: string) {
generateTypechainFiles(
typechainTarget,
`${outDirSrc}${typechainTarget}/v1.2.0`,
safeContracts_V1_2_0
// removed Safe Contract v1.2.0 for ethers-v6
typechainTarget === 'ethers-v6'
? safeContracts_V1_2_0.replace(`${safeContractsPath}/v1.2.0/gnosis_safe.json `, '')
: safeContracts_V1_2_0
)
generateTypechainFiles(
typechainTarget,
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,273 @@
import SafeBaseContractEthers from '@safe-global/protocol-kit/adapters/ethers/contracts/Safe/SafeBaseContractEthers'
import EthersAdapter from '@safe-global/protocol-kit/adapters/ethers/EthersAdapter'
import {
EthersTransactionOptions,
EthersTransactionResult
} from '@safe-global/protocol-kit/adapters/ethers/types'
import SafeContract_v1_2_0_Contract, {
SafeContract_v1_2_0_Abi
} from '@safe-global/protocol-kit/contracts/AbiType/Safe/v1.2.0/SafeContract_v1_2_0'
import { SafeTransaction } from 'packages/safe-core-sdk-types'
import { toTxResult } from '@safe-global/protocol-kit/adapters/ethers/utils'
import safe_1_2_0_ContractArtifacts from '@safe-global/protocol-kit/contracts/AbiType/assets/Safe/v1.2.0/gnosis_safe'
import { SENTINEL_ADDRESS } from '@safe-global/protocol-kit/adapters/ethers/utils/constants'
import { SafeVersion } from 'packages/safe-core-sdk-types'
import {
EncodeSafeFunction,
EstimateGasSafeFunction
} from '@safe-global/protocol-kit/contracts/AbiType/Safe/SafeBaseContract'

/**
* SafeContract_v1_2_0_Ethers is the implementation specific to the Safe contract version 1.2.0.
*
* This class specializes in handling interactions with the Safe contract version 1.2.0 using Ethers.js v6.
*
* @extends SafeBaseContractEthers<SafeContract_v1_2_0_Abi> - Inherits from SafeBaseContractEthers with ABI specific to Safe contract version 1.2.0.
* @implements SafeContract_v1_2_0_Contract - Implements the interface specific to Safe contract version 1.2.0.
*/
class SafeContract_v1_2_0_Ethers
extends SafeBaseContractEthers<SafeContract_v1_2_0_Abi>
implements SafeContract_v1_2_0_Contract
{
safeVersion: SafeVersion

/**
* Constructs an instance of SafeContract_v1_2_0_Ethers
*
* @param chainId - The chain ID where the contract resides.
* @param ethersAdapter - An instance of EthersAdapter.
* @param isL1SafeSingleton - A flag indicating if the contract is a L1 Safe Singleton.
* @param customContractAddress - Optional custom address for the contract. If not provided, the address is derived from the Safe deployments based on the chainId and safeVersion.
* @param customContractAbi - Optional custom ABI for the contract. If not provided, the default ABI for version 1.2.0 is used.
*/
constructor(
chainId: bigint,
ethersAdapter: EthersAdapter,
isL1SafeSingleton = false,
customContractAddress?: string,
customContractAbi?: SafeContract_v1_2_0_Abi
) {
const safeVersion = '1.2.0'
const defaultAbi = safe_1_2_0_ContractArtifacts.abi

super(
chainId,
ethersAdapter,
defaultAbi,
safeVersion,
isL1SafeSingleton,
customContractAddress,
customContractAbi
)

this.safeVersion = safeVersion
}

async NAME(): Promise<[string]> {
return [await this.contract.NAME()]
}

async VERSION(): Promise<[string]> {
return [await this.contract.VERSION()]
}

async approvedHashes([owner, txHash]: readonly [string, string]): Promise<[bigint]> {
return [await this.contract.approvedHashes(owner, txHash)]
}

async domainSeparator(): Promise<[string]> {
return [await this.contract.domainSeparator()]
}

async getModules(): Promise<[string[]]> {
const [modules] = await this.contract.getModulesPaginated(SENTINEL_ADDRESS, 10)
return modules
}

getModulesPaginated(
args: readonly [start: string, pageSize: bigint]
): Promise<[modules: string[], next: string]> {
return this.contract.getModulesPaginated(...args)
}

async getOwners(): Promise<[string[]]> {
return [await this.contract.getOwners()]
}

async getThreshold(): Promise<[bigint]> {
return [await this.contract.getThreshold()]
}

async isModuleEnabled(args: readonly [moduleAddress: string]): Promise<[boolean]> {
return [await this.contract.isModuleEnabled(...args)]
}

async isOwner(args: readonly [address: string]): Promise<[boolean]> {
return [await this.contract.isOwner(...args)]
}

async nonce(): Promise<[bigint]> {
return [await this.contract.nonce()]
}

async signedMessages(args: readonly [messageHash: string]): Promise<[bigint]> {
return [await this.contract.signedMessages(...args)]
}

async getMessageHash(args: readonly [message: string]): Promise<[string]> {
return this.contract.getMessageHash(...args)
}

async encodeTransactionData(
args: readonly [
to: string,
value: bigint,
data: string,
operation: number,
safeTxGas: bigint,
baseGas: bigint,
gasPrice: bigint,
gasToken: string,
refundReceiver: string,
_nonce: bigint
]
): Promise<[string]> {
return [await this.contract.encodeTransactionData(...args)]
}

async getTransactionHash(
args: readonly [
to: string,
value: bigint,
data: string,
operation: number,
safeTxGas: bigint,
baseGas: bigint,
gasPrice: bigint,
gasToken: string,
refundReceiver: string,
_nonce: bigint
]
): Promise<[string]> {
return [await this.contract.getTransactionHash(...args)]
}

encode: EncodeSafeFunction<SafeContract_v1_2_0_Abi> = (functionToEncode, args) => {
return this.contract.interface.encodeFunctionData(functionToEncode, args)
}

estimateGas: EstimateGasSafeFunction<SafeContract_v1_2_0_Abi> = (
functionToEstimate,
args,
options = {}
) => {
return this.contract.getFunction(functionToEstimate).estimateGas(...args, options)
}

// Custom method (not defined in the Safe Contract)
async approveHash(
hash: string,
options?: EthersTransactionOptions
): Promise<EthersTransactionResult> {
const gasLimit = options?.gasLimit || (await this.estimateGas('approveHash', [hash], options))
const txResponse = await this.contract.approveHash(hash, { ...options, gasLimit })

return toTxResult(txResponse, options)
}

// Custom method (not defined in the Safe Contract)
async execTransaction(
safeTransaction: SafeTransaction,
options?: EthersTransactionOptions
): Promise<EthersTransactionResult> {
const gasLimit =
options?.gasLimit ||
(await this.estimateGas(
'execTransaction',
[
safeTransaction.data.to,
BigInt(safeTransaction.data.value),
safeTransaction.data.data,
safeTransaction.data.operation,
BigInt(safeTransaction.data.safeTxGas),
BigInt(safeTransaction.data.baseGas),
BigInt(safeTransaction.data.gasPrice),
safeTransaction.data.gasToken,
safeTransaction.data.refundReceiver,
safeTransaction.encodedSignatures()
],
options
))

const txResponse = await this.contract.execTransaction(
safeTransaction.data.to,
safeTransaction.data.value,
safeTransaction.data.data,
safeTransaction.data.operation,
safeTransaction.data.safeTxGas,
safeTransaction.data.baseGas,
safeTransaction.data.gasPrice,
safeTransaction.data.gasToken,
safeTransaction.data.refundReceiver,
safeTransaction.encodedSignatures(),
{ ...options, gasLimit }
)

return toTxResult(txResponse, options)
}

// Custom method (not defined in the Safe Contract)
async getAddress(): Promise<string> {
return this.contract.getAddress()
}

// Custom method (not defined in the Safe Contract)
async getChainId(): Promise<[bigint]> {
return [await this.contract.getChainId()]
}

// Custom method (not defined in the Safe Contract)
async isValidTransaction(
safeTransaction: SafeTransaction,
options: EthersTransactionOptions = {}
) {
try {
const gasLimit =
options?.gasLimit ||
(await this.estimateGas(
'execTransaction',
[
safeTransaction.data.to,
BigInt(safeTransaction.data.value),
safeTransaction.data.data,
safeTransaction.data.operation,
BigInt(safeTransaction.data.safeTxGas),
BigInt(safeTransaction.data.baseGas),
BigInt(safeTransaction.data.gasPrice),
safeTransaction.data.gasToken,
safeTransaction.data.refundReceiver,
safeTransaction.encodedSignatures()
],
options
))

return await this.contract.execTransaction.staticCall(
safeTransaction.data.to,
BigInt(safeTransaction.data.value),
safeTransaction.data.data,
safeTransaction.data.operation,
BigInt(safeTransaction.data.safeTxGas),
BigInt(safeTransaction.data.baseGas),
BigInt(safeTransaction.data.gasPrice),
safeTransaction.data.gasToken,
safeTransaction.data.refundReceiver,
safeTransaction.encodedSignatures(),
{ ...options, gasLimit }
)
} catch (error) {
return false
}
}
}

export default SafeContract_v1_2_0_Ethers
Loading