29 lines
577 B
JavaScript
29 lines
577 B
JavaScript
// 4NK SDK Client WASM Package - Stub Implementation
|
|
// This is a temporary stub until the full WASM compilation is resolved
|
|
|
|
let wasm;
|
|
|
|
/**
|
|
* Initialize the WASM module
|
|
*/
|
|
export async function init() {
|
|
console.log("4NK SDK Client WASM initialized (stub)");
|
|
return Promise.resolve();
|
|
}
|
|
|
|
/**
|
|
* Get the WASM instance
|
|
*/
|
|
export function getWasmInstance() {
|
|
return wasm;
|
|
}
|
|
|
|
// Export stub functions that might be used by sdk_signer
|
|
export const sdk_client = {
|
|
init,
|
|
getWasmInstance,
|
|
// Add other stub functions as needed
|
|
};
|
|
|
|
export default sdk_client;
|