Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
feat(ooki): Convert to template
Browse files Browse the repository at this point in the history
  • Loading branch information
immasandwich committed Sep 26, 2022
1 parent 9bbec2c commit 6952dee
Show file tree
Hide file tree
Showing 22 changed files with 102 additions and 35,480 deletions.
5,249 changes: 0 additions & 5,249 deletions src/apps/ooki/contracts/abis/IToken.json

This file was deleted.

1,915 changes: 0 additions & 1,915 deletions src/apps/ooki/contracts/abis/i-price-feeds.json

This file was deleted.

3,959 changes: 0 additions & 3,959 deletions src/apps/ooki/contracts/abis/i-staking-v-2.json

This file was deleted.

15,397 changes: 0 additions & 15,397 deletions src/apps/ooki/contracts/abis/ib-zx.json

This file was deleted.

534 changes: 0 additions & 534 deletions src/apps/ooki/contracts/ethers/IPriceFeeds.ts

This file was deleted.

1,039 changes: 0 additions & 1,039 deletions src/apps/ooki/contracts/ethers/IStakingV2.ts

This file was deleted.

3,357 changes: 0 additions & 3,357 deletions src/apps/ooki/contracts/ethers/IbZx.ts

This file was deleted.

Expand Up @@ -32,7 +32,7 @@ export declare namespace IToken {
};
}

export interface ITokenInterface extends utils.Interface {
export interface OokiITokenInterface extends utils.Interface {
functions: {
'_isPaused(bytes4)': FunctionFragment;
'allowance(address,address)': FunctionFragment;
Expand Down Expand Up @@ -316,12 +316,12 @@ export type TransferEvent = TypedEvent<[string, string, BigNumber], TransferEven

export type TransferEventFilter = TypedEventFilter<TransferEvent>;

export interface IToken extends BaseContract {
export interface OokiIToken extends BaseContract {
connect(signerOrProvider: Signer | Provider | string): this;
attach(addressOrName: string): this;
deployed(): Promise<this>;

interface: ITokenInterface;
interface: OokiITokenInterface;

queryFilter<TEvent extends TypedEvent>(
event: TypedEventFilter<TEvent>,
Expand Down
Expand Up @@ -27,7 +27,7 @@ export declare namespace TokenRegistry {
};
}

export interface TokenRegistryInterface extends utils.Interface {
export interface OokiTokenRegistryInterface extends utils.Interface {
functions: {
'bZxContract()': FunctionFragment;
'getTokens(uint256,uint256)': FunctionFragment;
Expand All @@ -47,12 +47,12 @@ export interface TokenRegistryInterface extends utils.Interface {
events: {};
}

export interface TokenRegistry extends BaseContract {
export interface OokiTokenRegistry extends BaseContract {
connect(signerOrProvider: Signer | Provider | string): this;
attach(addressOrName: string): this;
deployed(): Promise<this>;

interface: TokenRegistryInterface;
interface: OokiTokenRegistryInterface;

queryFilter<TEvent extends TypedEvent>(
event: TypedEventFilter<TEvent>,
Expand Down
340 changes: 0 additions & 340 deletions src/apps/ooki/contracts/ethers/factories/IPriceFeeds__factory.ts

This file was deleted.

0 comments on commit 6952dee

Please sign in to comment.