@rozoai/intent-pay 0.0.34 → 0.0.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/assets/chains.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { arbitrum, base, bsc, celo, ethereum, linea, mantle, optimism, polygon, rozoStellar, solana, stellar, worldchain } from "@rozoai/intent-common";
|
|
2
1
|
type Logo = {
|
|
3
2
|
testnet?: boolean;
|
|
4
3
|
};
|
|
@@ -18,18 +17,6 @@ export declare const Base: ({ testnet, ...props }: {
|
|
|
18
17
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
19
18
|
export declare const Stellar: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
20
19
|
export declare const chainToLogo: {
|
|
21
|
-
[
|
|
22
|
-
[base.chainId]: import("react/jsx-runtime").JSX.Element;
|
|
23
|
-
[bsc.chainId]: import("react/jsx-runtime").JSX.Element;
|
|
24
|
-
[celo.chainId]: import("react/jsx-runtime").JSX.Element;
|
|
25
|
-
[ethereum.chainId]: import("react/jsx-runtime").JSX.Element;
|
|
26
|
-
[linea.chainId]: import("react/jsx-runtime").JSX.Element;
|
|
27
|
-
[mantle.chainId]: import("react/jsx-runtime").JSX.Element;
|
|
28
|
-
[optimism.chainId]: import("react/jsx-runtime").JSX.Element;
|
|
29
|
-
[polygon.chainId]: import("react/jsx-runtime").JSX.Element;
|
|
30
|
-
[worldchain.chainId]: import("react/jsx-runtime").JSX.Element;
|
|
31
|
-
[solana.chainId]: import("react/jsx-runtime").JSX.Element;
|
|
32
|
-
[stellar.chainId]: import("react/jsx-runtime").JSX.Element;
|
|
33
|
-
[rozoStellar.chainId]: import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
[x: number]: import("react/jsx-runtime").JSX.Element;
|
|
34
21
|
};
|
|
35
22
|
export {};
|
package/build/index.d.ts
CHANGED
|
@@ -15,3 +15,4 @@ export { usePayContext } from "./hooks/usePayContext";
|
|
|
15
15
|
export { PayContext as RozoPayContext } from "./provider/PayContext";
|
|
16
16
|
export { useRozoConnectStellar } from "./provider/StellarContextProvider";
|
|
17
17
|
export { getAddress as getEVMAddress, isAddress as isEVMAddress } from "viem";
|
|
18
|
+
export { createConfig as createRozoWagmiConfig, WagmiProvider as RozoWagmiProvider, } from "wagmi";
|
package/build/package.json.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var name = "@rozoai/intent-pay";
|
|
2
|
-
var version = "0.0.
|
|
2
|
+
var version = "0.0.35";
|
|
3
3
|
var author = "RozoAI";
|
|
4
4
|
var homepage = "https://github.com/RozoAI/intent-pay";
|
|
5
5
|
var license = "BSD-2-Clause";
|
|
@@ -49,7 +49,7 @@ var dependencies = {
|
|
|
49
49
|
"@albedo-link/intent": "^0.13.0",
|
|
50
50
|
"@reown/appkit": "^1.7.0",
|
|
51
51
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
52
|
-
"@rozoai/intent-common": "0.0.
|
|
52
|
+
"@rozoai/intent-common": "0.0.27",
|
|
53
53
|
"@solana/spl-token": "^0.4.13",
|
|
54
54
|
"@solana/wallet-adapter-base": "^0.9.23",
|
|
55
55
|
"@solana/wallet-adapter-react": "^0.15.35",
|
|
@@ -1,13 +1,5 @@
|
|
|
1
1
|
import type { ISupportedWallet, StellarWalletsKit } from "@creit.tech/stellar-wallets-kit";
|
|
2
2
|
import { Horizon } from "@stellar/stellar-sdk";
|
|
3
|
-
import type { ReactNode } from "react";
|
|
4
|
-
type StellarContextProvider = {
|
|
5
|
-
children: ReactNode;
|
|
6
|
-
rpcUrl?: string;
|
|
7
|
-
kit?: StellarWalletsKit;
|
|
8
|
-
stellarWalletPersistence?: boolean;
|
|
9
|
-
log?: (msg: string) => void;
|
|
10
|
-
};
|
|
11
3
|
type StellarContextProviderValue = {
|
|
12
4
|
kit: StellarWalletsKit | undefined;
|
|
13
5
|
stellarWalletPersistence: boolean;
|
package/build/src/index.js
CHANGED
|
@@ -13,4 +13,5 @@ export { usePayContext } from './hooks/usePayContext.js';
|
|
|
13
13
|
export { PayContext as RozoPayContext } from './provider/PayContext.js';
|
|
14
14
|
export { useRozoConnectStellar } from './provider/StellarContextProvider.js';
|
|
15
15
|
export { getAddress as getEVMAddress, isAddress as isEVMAddress } from 'viem';
|
|
16
|
+
export { WagmiProvider as RozoWagmiProvider, createConfig as createRozoWagmiConfig } from 'wagmi';
|
|
16
17
|
//# sourceMappingURL=index.js.map
|
package/build/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rozoai/intent-pay",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.35",
|
|
5
5
|
"author": "RozoAI",
|
|
6
6
|
"homepage": "https://github.com/RozoAI/intent-pay",
|
|
7
7
|
"license": "BSD-2-Clause",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@albedo-link/intent": "^0.13.0",
|
|
52
52
|
"@reown/appkit": "^1.7.0",
|
|
53
53
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
54
|
-
"@rozoai/intent-common": "0.0.
|
|
54
|
+
"@rozoai/intent-common": "0.0.27",
|
|
55
55
|
"@solana/spl-token": "^0.4.13",
|
|
56
56
|
"@solana/wallet-adapter-base": "^0.9.23",
|
|
57
57
|
"@solana/wallet-adapter-react": "^0.15.35",
|