Skip to content

Commit

Permalink
chore: sdk-js typings fix
Browse files Browse the repository at this point in the history
  • Loading branch information
L03TJ3 committed Dec 8, 2024
1 parent 51302f7 commit 94ffcaa
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/sdk-js/src/goodcollective/goodcollective.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import { BigNumberish, ContractTransaction, ethers } from 'ethers';
import GoodCollectiveContracts from '@gooddollar/goodcollective-contracts/releases/deployment.json';
import GoodCollectiveContracts from '@gooddollar/goodcollective-contracts/releases/deployment.json' assert { type: 'json' };
import {
ProvableNFT,
DirectPaymentsFactory,
DirectPaymentsPool,
UBIPool,
UBIPoolFactory,
} from '@gooddollar/goodcollective-contracts/typechain-types';
import { abi as UBIPoolAbi } from '@gooddollar/goodcollective-contracts/artifacts/contracts/UBI/UBIPool.sol/UBIPool.json';
import UBIPoolJson from '@gooddollar/goodcollective-contracts/artifacts/contracts/UBI/UBIPool.sol/UBIPool.json' assert { type: 'json' };
const UBIPoolAbi = UBIPoolJson.abi;

import { Framework } from '@superfluid-finance/sdk-core';
import { HelperLibrary } from '@gooddollar/goodcollective-contracts/typechain-types/contracts/GoodCollective/GoodCollectiveSuperApp.ts';
Expand All @@ -16,7 +17,7 @@ import { HelperLibrary } from '@gooddollar/goodcollective-contracts/typechain-ty
// import * as Proof from '@web3-storage/w3up-client/proof';
// import { Signer } from '@web3-storage/w3up-client/principal/ed25519';
import { Multicall, ContractCallResults, ContractCallContext } from 'ethereum-multicall';
import { PoolSettingsStruct } from '@gooddollar/goodcollective-contracts/typechain-types/contracts/UBI/UBIPool.ts';
import { PoolSettingsStruct } from '@gooddollar/goodcollective-contracts/typechain-types/contracts/UBI/UBIPool.sol/UBIPool.ts';
export type NFTData = ProvableNFT.NFTDataStruct;
export type EventData = ProvableNFT.EventDataStruct;
export type PoolSettings = Omit<DirectPaymentsPool.PoolSettingsStruct, 'nftType'> & { nftType?: BigNumberish };
Expand Down

0 comments on commit 94ffcaa

Please sign in to comment.