Skip to content

Commit

Permalink
fix: change type
Browse files Browse the repository at this point in the history
  • Loading branch information
akasuv committed Oct 23, 2023
1 parent 468bc27 commit aa238f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CyberProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class CyberProvider extends EventEmitter implements EIP1193Provider {
return this.cyberApp.cyberWallet?.[chainKey];
}

async request(request: { method: string; params?: any[] }): Promise<any> {
async request(request: { method: string; params?: any }): Promise<any> {
const { method, params = [] } = request;

switch (method) {
Expand Down

0 comments on commit aa238f7

Please sign in to comment.