antier-gnosis-safe
Advanced tools
Comparing version
const createMultiSigWallet = require('./lib/createMultiSigWallet'); | ||
const { executeContractCallForSigners } = require('./lib/gnosis-utils'); | ||
const { executeContractCallWithSigners } = require('./lib/gnosis-utils-execute'); | ||
module.exports = createMultiSigWallet; | ||
module.exports = { createMultiSigWallet, executeContractCallForSigners, executeContractCallWithSigners }; |
@@ -164,4 +164,2 @@ import { Contract, utils, BigNumber, BigNumberish, Signer, PopulatedTransaction } from "ethers" | ||
const tx = buildContractCall(contract, method, params, nonce, delegateCall, overrides) | ||
//console.log('tx :>> ', tx); | ||
//console.log('signs :>> ', signs); | ||
return executeTxWithSigners(safe, tx, signs) | ||
@@ -168,0 +166,0 @@ } |
@@ -173,3 +173,3 @@ import { Contract, utils, BigNumber, BigNumberish, Signer, PopulatedTransaction } from "ethers" | ||
export const executeContractCallWithSigners = async (safe: Contract, contract: Contract, method: string, params: any[], signers: any[], provider: any, delegateCall?: boolean, overrides?: Partial<SafeTransaction>) => { | ||
export const executeContractCallForSigners = async (safe: Contract, contract: Contract, method: string, params: any[], signers: any[], provider: any, delegateCall?: boolean, overrides?: Partial<SafeTransaction>) => { | ||
//console.log('nonce :>> ' , await safe.nonce()); | ||
@@ -176,0 +176,0 @@ const nonce = await safe.nonce() |
{ | ||
"name": "antier-gnosis-safe", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
27119
0.55%