Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use async import for @mangata-finance/type-definitions because of lac… #107

Merged
merged 1 commit into from
Dec 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 12 additions & 13 deletions src/nodes/supported/Mangata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,6 @@ import {
import ParachainNode from '../ParachainNode'
import XTokensTransferImpl from '../XTokensTransferImpl'
import { type ApiOptions } from '@polkadot/api/types'
import { mTypes, mRpc } from '@mangata-finance/type-definitions'

const options = ({ types = {}, rpc = {}, ...otherOptions }: ApiOptions = {}): ApiOptions => ({
types: {
...mTypes,
...types
},
rpc: {
...mRpc,
...rpc
},
...otherOptions
})

class Mangata extends ParachainNode implements IXTokensTransfer {
constructor() {
Expand All @@ -35,6 +22,18 @@ class Mangata extends ParachainNode implements IXTokensTransfer {
}

async createApiInstance(): Promise<ApiPromise> {
const { mTypes, mRpc } = await import('@mangata-finance/type-definitions')
const options = ({ types = {}, rpc = {}, ...otherOptions }: ApiOptions = {}): ApiOptions => ({
types: {
...mTypes,
...types
},
rpc: {
...mRpc,
...rpc
},
...otherOptions
})
const provider = new WsProvider(this.getProvider())
return await ApiPromise.create(
options({
Expand Down