Skip to content

Commit

Permalink
fix: 🐛 add new methods to other providers
Browse files Browse the repository at this point in the history
  • Loading branch information
wilmacedo committed Feb 22, 2024
1 parent 047a5cf commit 5c99d15
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/ada/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,12 @@ export class CardanoProvider implements ProviderEntity {
async joinPool(address: string, poolId: number, amount: number): Promise<string> {
throw new Error('Method not implemented.');
}

bondExtra(address: string, amount: number): Promise<string> {
throw new Error('Method not implemented.');
}

claim(address: string): Promise<string> {
throw new Error('Method not implemented.');
}
}
8 changes: 8 additions & 0 deletions src/icp/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,12 @@ export class InternetComputerProvider implements ProviderEntity {
joinPool(address: string, poolId: number, amount: number): Promise<string> {
throw new Error('Method not implemented.');
}

bondExtra(address: string, amount: number): Promise<string> {
throw new Error('Method not implemented.');
}

claim(address: string): Promise<string> {
throw new Error('Method not implemented.');
}
}

0 comments on commit 5c99d15

Please sign in to comment.