iso-filecoin
Version:
Isomorphic filecoin abstractions for RPC, signatures, address, token and wallet
36 lines • 768 B
TypeScript
export namespace filForwarderMetadata {
export { abi };
export { contractAddress };
export { chainIds };
}
declare const abi: ({
inputs: {
internalType: string;
name: string;
type: string;
}[];
name: string;
type: string;
outputs?: undefined;
stateMutability?: undefined;
} | {
inputs: {
internalType: string;
name: string;
type: string;
}[];
name: string;
outputs: never[];
stateMutability: string;
type: string;
})[];
/**
* @type {`0x${string}`}
*/
declare const contractAddress: `0x${string}`;
declare namespace chainIds {
let filecoinMainnet: string;
let filecoinCalibrationTestnet: string;
}
export {};
//# sourceMappingURL=filforwarder.d.ts.map