Skip to content

Commit

Permalink
chore: fix key.gen with patch
Browse files Browse the repository at this point in the history
needed until kubo-rpc-client fix is merged

see ipfs/js-kubo-rpc-client#143
see ipfs/js-kubo-rpc-client#145
  • Loading branch information
SgtPooki committed Feb 9, 2023
1 parent 80cb93f commit 918c2f6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions patches/kubo-rpc-client+3.0.0.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/node_modules/kubo-rpc-client/src/key/gen.js b/node_modules/kubo-rpc-client/src/key/gen.js
index 18eaf08..1859a95 100644
--- a/node_modules/kubo-rpc-client/src/key/gen.js
+++ b/node_modules/kubo-rpc-client/src/key/gen.js
@@ -4,7 +4,7 @@ import { toUrlSearchParams } from '../lib/to-url-search-params.js'

/** @type {import('ipfs-core-types/src/key').GenOptions} */
const defaultOptions = {
- type: 'Ed25519'
+ type: 'ed25519'
}

export const createGen = configure(api => {

0 comments on commit 918c2f6

Please sign in to comment.