File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @rabbitholegg/questdk-plugin-fabric " : patch
3
+ ---
4
+
5
+ export functions required for inbox integration
Original file line number Diff line number Diff line change 1
- import { type IActionPlugin } from '@rabbitholegg/questdk'
1
+ import type {
2
+ ActionParams ,
3
+ IActionPlugin ,
4
+ MintActionParams ,
5
+ } from '@rabbitholegg/questdk-plugin-utils'
2
6
3
7
import {
8
+ getFees ,
9
+ getProjectFees ,
10
+ getMintIntent ,
4
11
getSupportedChainIds ,
5
12
getSupportedTokenAddresses ,
6
13
mint ,
14
+ simulateMint ,
7
15
} from './Fabric.js'
8
16
9
17
export const Fabric : IActionPlugin = {
10
18
pluginId : 'fabric' ,
11
19
getSupportedTokenAddresses,
12
20
getSupportedChainIds,
13
21
mint,
22
+ getProjectFees : async ( params : ActionParams ) =>
23
+ getProjectFees ( params as unknown as MintActionParams ) ,
24
+ getFees : async ( params : ActionParams ) =>
25
+ getFees ( params as unknown as MintActionParams ) ,
26
+ getMintIntent,
27
+ simulateMint,
14
28
}
You can’t perform that action at this time.
0 commit comments