anymal-protocol 1.0.134 → 1.0.135
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/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3055,10 +3055,10 @@ function useCoinbaseCreateOrganizationWallet() {
|
|
|
3055
3055
|
}
|
|
3056
3056
|
let proxyAddress;
|
|
3057
3057
|
try {
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3058
|
+
const txHash = data?.receipts?.[0]?.transactionHash || data?.transactionHash;
|
|
3059
|
+
if (txHash) {
|
|
3060
|
+
const receipt = await publicClient.getTransactionReceipt({
|
|
3061
|
+
hash: txHash
|
|
3062
3062
|
});
|
|
3063
3063
|
for (const log of receipt.logs) {
|
|
3064
3064
|
try {
|
package/dist/index.mjs
CHANGED
|
@@ -2976,10 +2976,10 @@ function useCoinbaseCreateOrganizationWallet() {
|
|
|
2976
2976
|
}
|
|
2977
2977
|
let proxyAddress;
|
|
2978
2978
|
try {
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
2979
|
+
const txHash = data?.receipts?.[0]?.transactionHash || data?.transactionHash;
|
|
2980
|
+
if (txHash) {
|
|
2981
|
+
const receipt = await publicClient.getTransactionReceipt({
|
|
2982
|
+
hash: txHash
|
|
2983
2983
|
});
|
|
2984
2984
|
for (const log of receipt.logs) {
|
|
2985
2985
|
try {
|
package/package.json
CHANGED