Skip to content

Commit a31118f

Browse files
committed
Add new dependencies for Cardano and BigNumber.js
libraries
1 parent 1a4719f commit a31118f

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,13 @@
3030
"@blockfrost/blockfrost-js": "^5.0.0",
3131
"@cosmjs/proto-signing": "^0.30.0",
3232
"@cosmjs/stargate": "^0.30.0",
33+
"@emurgo/cardano-serialization-lib-nodejs": "^11.5.0",
3334
"@solana/web3.js": "^1.47.3",
3435
"@substrate/txwrapper-polkadot": "^7.0.1",
3536
"@taquito/rpc": "^16.0.1",
37+
"@types/bn.js": "^5.1.5",
3638
"axios": "^0.23.0",
39+
"bn.js": "^5.2.1",
3740
"ethers": "^5.6.4",
3841
"fireblocks-sdk": "^4.0.0",
3942
"js-sha256": "^0.9.0",

pnpm-lock.yaml

Lines changed: 13 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/kiln.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { NearService } from './services/near';
99
import { DotService } from './services/dot';
1010
import { XtzService } from './services/xtz';
1111
import { MaticService } from './services/matic';
12+
import { OsmoService } from './services/osmo';
1213

1314
type Config = {
1415
apiToken: string;
@@ -28,6 +29,7 @@ export class Kiln {
2829
dot: DotService;
2930
xtz: XtzService;
3031
matic: MaticService;
32+
osmo: OsmoService;
3133

3234
constructor({ testnet, apiToken, baseUrl }: Config) {
3335
api.defaults.headers.common.Authorization = `Bearer ${apiToken}`;
@@ -46,5 +48,6 @@ export class Kiln {
4648
this.dot = new DotService({ testnet });
4749
this.xtz = new XtzService({ testnet });
4850
this.matic = new MaticService({ testnet });
51+
this.osmo = new OsmoService({ testnet });
4952
}
5053
}

0 commit comments

Comments
 (0)