@zkp2p/contracts-v2 0.2.3 → 0.3.0

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.
Files changed (114) hide show
  1. package/README.md +20 -20
  2. package/_cjs/addresses/base.js +1 -1
  3. package/_cjs/addresses/base.json +1 -1
  4. package/_cjs/addresses/baseStaging.js +1 -1
  5. package/_cjs/addresses/baseStaging.json +1 -1
  6. package/_cjs/addresses/index.json +1 -1
  7. package/_cjs/constants/index.js +0 -1
  8. package/_cjs/constants/index.json +1 -2
  9. package/_cjs/currencies/currencies.js +1 -1
  10. package/_cjs/currencies/currencies.json +1 -1
  11. package/_cjs/oracleFeeds/chainlink.js +1 -1
  12. package/_cjs/oracleFeeds/chainlink.json +1 -1
  13. package/_cjs/paymentMethods/base.js +1 -25
  14. package/_cjs/paymentMethods/base.json +1 -25
  15. package/_cjs/paymentMethods/baseStaging.js +1 -25
  16. package/_cjs/paymentMethods/baseStaging.json +1 -25
  17. package/_cjs/paymentMethods/index.js +1 -3
  18. package/_cjs/paymentMethods/index.json +1 -2
  19. package/_cjs/paymentMethods/lookups.js +5 -15
  20. package/_cjs/paymentMethods/lookups.json +5 -15
  21. package/_cjs/types/contracts/OrchestratorV3.js +2136 -0
  22. package/_cjs/types/contracts/RiskTierManager.js +2126 -0
  23. package/_cjs/types/contracts/StakeVault.js +2901 -0
  24. package/_cjs/types/contracts/hooks/DeferredPayoutHook.js +288 -0
  25. package/_cjs/types/contracts/hooks/index.js +1 -0
  26. package/_cjs/types/contracts/index.js +5 -0
  27. package/_cjs/types/contracts/interfaces/IDeferredPayoutHook.js +206 -0
  28. package/_cjs/types/contracts/interfaces/IIntentRiskHook.js +224 -0
  29. package/_cjs/types/contracts/interfaces/IOrchestratorV3.js +1494 -0
  30. package/_cjs/types/contracts/interfaces/IRiskTierManager.js +1704 -0
  31. package/_cjs/types/contracts/interfaces/IStakeVault.js +2587 -0
  32. package/_cjs/types/contracts/interfaces/index.js +5 -0
  33. package/_cjs/types/contracts/lib/BoundedCall.js +87 -0
  34. package/_cjs/types/contracts/lib/index.js +4 -0
  35. package/_esm/addresses/base.js +1 -1
  36. package/_esm/addresses/base.json +1 -1
  37. package/_esm/addresses/baseStaging.js +1 -1
  38. package/_esm/addresses/baseStaging.json +1 -1
  39. package/_esm/addresses/index.json +1 -1
  40. package/_esm/constants/index.js +0 -1
  41. package/_esm/constants/index.json +1 -2
  42. package/_esm/currencies/currencies.js +1 -1
  43. package/_esm/currencies/currencies.json +1 -1
  44. package/_esm/oracleFeeds/chainlink.js +1 -1
  45. package/_esm/oracleFeeds/chainlink.json +1 -1
  46. package/_esm/paymentMethods/base.js +1 -25
  47. package/_esm/paymentMethods/base.json +1 -25
  48. package/_esm/paymentMethods/baseStaging.js +1 -25
  49. package/_esm/paymentMethods/baseStaging.json +1 -25
  50. package/_esm/paymentMethods/index.js +1 -3
  51. package/_esm/paymentMethods/index.json +1 -2
  52. package/_esm/paymentMethods/lookups.js +5 -15
  53. package/_esm/paymentMethods/lookups.json +5 -15
  54. package/_esm/types/contracts/OrchestratorV3.js +2136 -0
  55. package/_esm/types/contracts/RiskTierManager.js +2126 -0
  56. package/_esm/types/contracts/StakeVault.js +2901 -0
  57. package/_esm/types/contracts/hooks/DeferredPayoutHook.js +288 -0
  58. package/_esm/types/contracts/hooks/index.js +1 -0
  59. package/_esm/types/contracts/index.js +5 -0
  60. package/_esm/types/contracts/interfaces/IDeferredPayoutHook.js +206 -0
  61. package/_esm/types/contracts/interfaces/IIntentRiskHook.js +224 -0
  62. package/_esm/types/contracts/interfaces/IOrchestratorV3.js +1494 -0
  63. package/_esm/types/contracts/interfaces/IRiskTierManager.js +1704 -0
  64. package/_esm/types/contracts/interfaces/IStakeVault.js +2587 -0
  65. package/_esm/types/contracts/interfaces/index.js +5 -0
  66. package/_esm/types/contracts/lib/BoundedCall.js +87 -0
  67. package/_esm/types/contracts/lib/index.js +4 -0
  68. package/_types/constants/index.d.ts +0 -1
  69. package/_types/paymentMethods/index.d.ts +0 -1
  70. package/_types/paymentMethods/lookups.d.ts +0 -2
  71. package/addresses/base.json +1 -1
  72. package/addresses/baseStaging.json +1 -1
  73. package/addresses/index.json +1 -1
  74. package/constants/index.d.ts +0 -1
  75. package/constants/index.json +1 -2
  76. package/constants/index.ts +0 -1
  77. package/currencies/currencies.json +1 -1
  78. package/oracleFeeds/chainlink.json +1 -1
  79. package/package.json +1 -1
  80. package/paymentMethods/base.json +1 -25
  81. package/paymentMethods/baseStaging.json +1 -25
  82. package/paymentMethods/index.d.ts +0 -1
  83. package/paymentMethods/index.json +1 -2
  84. package/paymentMethods/index.ts +1 -3
  85. package/paymentMethods/lookups.d.ts +0 -2
  86. package/paymentMethods/lookups.json +5 -15
  87. package/types/contracts/OrchestratorV3.ts +2136 -0
  88. package/types/contracts/RiskTierManager.ts +2126 -0
  89. package/types/contracts/StakeVault.ts +2901 -0
  90. package/types/contracts/hooks/DeferredPayoutHook.ts +288 -0
  91. package/types/contracts/hooks/index.ts +1 -0
  92. package/types/contracts/index.ts +5 -0
  93. package/types/contracts/interfaces/IDeferredPayoutHook.ts +206 -0
  94. package/types/contracts/interfaces/IIntentRiskHook.ts +224 -0
  95. package/types/contracts/interfaces/IOrchestratorV3.ts +1494 -0
  96. package/types/contracts/interfaces/IRiskTierManager.ts +1704 -0
  97. package/types/contracts/interfaces/IStakeVault.ts +2587 -0
  98. package/types/contracts/interfaces/index.ts +5 -0
  99. package/types/contracts/lib/BoundedCall.ts +87 -0
  100. package/types/contracts/lib/index.ts +4 -0
  101. package/_cjs/constants/baseSepolia.js +0 -12
  102. package/_cjs/constants/baseSepolia.json +0 -10
  103. package/_cjs/paymentMethods/baseSepolia.js +0 -139
  104. package/_cjs/paymentMethods/baseSepolia.json +0 -137
  105. package/_esm/constants/baseSepolia.js +0 -11
  106. package/_esm/constants/baseSepolia.json +0 -10
  107. package/_esm/paymentMethods/baseSepolia.js +0 -138
  108. package/_esm/paymentMethods/baseSepolia.json +0 -137
  109. package/_types/constants/baseSepolia.d.ts +0 -4
  110. package/_types/paymentMethods/baseSepolia.d.ts +0 -4
  111. package/constants/baseSepolia.d.ts +0 -4
  112. package/constants/baseSepolia.json +0 -10
  113. package/paymentMethods/baseSepolia.d.ts +0 -4
  114. package/paymentMethods/baseSepolia.json +0 -137
@@ -3,14 +3,17 @@
3
3
  /* eslint-disable */
4
4
  export type { IAttestationVerifier } from "./IAttestationVerifier";
5
5
  export type { IChainlinkAggregatorV3 } from "./IChainlinkAggregatorV3";
6
+ export type { IDeferredPayoutHook } from "./IDeferredPayoutHook";
6
7
  export type { IEscrow } from "./IEscrow";
7
8
  export type { IEscrowRegistry } from "./IEscrowRegistry";
8
9
  export type { IEscrowV2 } from "./IEscrowV2";
10
+ export type { IIntentRiskHook } from "./IIntentRiskHook";
9
11
  export type { INullifierRegistry } from "./INullifierRegistry";
10
12
  export type { IOracleAdapter } from "./IOracleAdapter";
11
13
  export type { IOrchestrator } from "./IOrchestrator";
12
14
  export type { IOrchestratorRegistry } from "./IOrchestratorRegistry";
13
15
  export type { IOrchestratorV2 } from "./IOrchestratorV2";
16
+ export type { IOrchestratorV3 } from "./IOrchestratorV3";
14
17
  export type { IPaymentVerifier } from "./IPaymentVerifier";
15
18
  export type { IPaymentVerifierRegistry } from "./IPaymentVerifierRegistry";
16
19
  export type { IPostIntentHook } from "./IPostIntentHook";
@@ -23,3 +26,5 @@ export type { IPyth } from "./IPyth";
23
26
  export type { IRateManager } from "./IRateManager";
24
27
  export type { IReferralFee } from "./IReferralFee";
25
28
  export type { IRelayerRegistry } from "./IRelayerRegistry";
29
+ export type { IRiskTierManager } from "./IRiskTierManager";
30
+ export type { IStakeVault } from "./IStakeVault";
@@ -0,0 +1,87 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ import type { BaseContract, BytesLike, Signer, utils } from "ethers";
5
+ import type { EventFragment } from "@ethersproject/abi";
6
+ import type { Listener, Provider } from "@ethersproject/providers";
7
+ import type {
8
+ TypedEventFilter,
9
+ TypedEvent,
10
+ TypedListener,
11
+ OnEvent,
12
+ PromiseOrValue,
13
+ } from "../../common";
14
+
15
+ export interface BoundedCallInterface extends utils.Interface {
16
+ functions: {};
17
+
18
+ events: {
19
+ "RiskHookCallbackFailed(bytes32,address,bytes4,bytes)": EventFragment;
20
+ };
21
+
22
+ getEvent(nameOrSignatureOrTopic: "RiskHookCallbackFailed"): EventFragment;
23
+ }
24
+
25
+ export interface RiskHookCallbackFailedEventObject {
26
+ intentHash: string;
27
+ riskHook: string;
28
+ callbackSelector: string;
29
+ revertData: string;
30
+ }
31
+ export type RiskHookCallbackFailedEvent = TypedEvent<
32
+ [string, string, string, string],
33
+ RiskHookCallbackFailedEventObject
34
+ >;
35
+
36
+ export type RiskHookCallbackFailedEventFilter =
37
+ TypedEventFilter<RiskHookCallbackFailedEvent>;
38
+
39
+ export interface BoundedCall extends BaseContract {
40
+ connect(signerOrProvider: Signer | Provider | string): this;
41
+ attach(addressOrName: string): this;
42
+ deployed(): Promise<this>;
43
+
44
+ interface: BoundedCallInterface;
45
+
46
+ queryFilter<TEvent extends TypedEvent>(
47
+ event: TypedEventFilter<TEvent>,
48
+ fromBlockOrBlockhash?: string | number | undefined,
49
+ toBlock?: string | number | undefined
50
+ ): Promise<Array<TEvent>>;
51
+
52
+ listeners<TEvent extends TypedEvent>(
53
+ eventFilter?: TypedEventFilter<TEvent>
54
+ ): Array<TypedListener<TEvent>>;
55
+ listeners(eventName?: string): Array<Listener>;
56
+ removeAllListeners<TEvent extends TypedEvent>(
57
+ eventFilter: TypedEventFilter<TEvent>
58
+ ): this;
59
+ removeAllListeners(eventName?: string): this;
60
+ off: OnEvent<this>;
61
+ on: OnEvent<this>;
62
+ once: OnEvent<this>;
63
+ removeListener: OnEvent<this>;
64
+
65
+ functions: {};
66
+
67
+ callStatic: {};
68
+
69
+ filters: {
70
+ "RiskHookCallbackFailed(bytes32,address,bytes4,bytes)"(
71
+ intentHash?: PromiseOrValue<BytesLike> | null,
72
+ riskHook?: PromiseOrValue<string> | null,
73
+ callbackSelector?: PromiseOrValue<BytesLike> | null,
74
+ revertData?: null
75
+ ): RiskHookCallbackFailedEventFilter;
76
+ RiskHookCallbackFailed(
77
+ intentHash?: PromiseOrValue<BytesLike> | null,
78
+ riskHook?: PromiseOrValue<string> | null,
79
+ callbackSelector?: PromiseOrValue<BytesLike> | null,
80
+ revertData?: null
81
+ ): RiskHookCallbackFailedEventFilter;
82
+ };
83
+
84
+ estimateGas: {};
85
+
86
+ populateTransaction: {};
87
+ }
@@ -0,0 +1,4 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ export type { BoundedCall } from "./BoundedCall";
@@ -1,4 +1,3 @@
1
1
  // Typed re-exports for constants
2
2
  export { default as base } from './base';
3
- export { default as baseSepolia } from './baseSepolia';
4
3
  export { default as baseStaging } from './baseStaging';
@@ -1,5 +1,4 @@
1
1
  // Typed re-exports for payment methods
2
2
  export { default as base } from './base';
3
- export { default as baseSepolia } from './baseSepolia';
4
3
  export { default as baseStaging } from './baseStaging';
5
4
  export { default as lookups } from './lookups';
@@ -3,8 +3,6 @@ export type PaymentMethodLookups = {
3
3
  generatedAt: string;
4
4
  nameToHash: Record<string, string>;
5
5
  hashToName: Record<string, string>;
6
- zelleVariantHashes: string[];
7
- zelleUnspecifiedHash: string;
8
6
  };
9
7
  declare const value: PaymentMethodLookups;
10
8
  export default value;
@@ -27,6 +27,6 @@
27
27
  "WhitelistPreIntentHook": "0xda023Ea0d789A41BcF5866F7B6BBd2CaDF9b79B8"
28
28
  },
29
29
  "meta": {
30
- "generatedAt": "2026-06-22T02:43:51.802Z"
30
+ "generatedAt": "2026-07-15T15:12:32.088Z"
31
31
  }
32
32
  }
@@ -27,6 +27,6 @@
27
27
  "WhitelistPreIntentHook": "0xABE7AFC4C7bE9c4Eed5F465a98e124ee7860C005"
28
28
  },
29
29
  "meta": {
30
- "generatedAt": "2026-06-22T02:43:51.803Z"
30
+ "generatedAt": "2026-07-15T15:12:32.089Z"
31
31
  }
32
32
  }
@@ -3,5 +3,5 @@
3
3
  "base",
4
4
  "baseStaging"
5
5
  ],
6
- "generatedAt": "2026-06-22T02:43:51.804Z"
6
+ "generatedAt": "2026-07-15T15:12:32.089Z"
7
7
  }
@@ -1,4 +1,3 @@
1
1
  // Typed re-exports for constants
2
2
  export { default as base } from './base';
3
- export { default as baseSepolia } from './baseSepolia';
4
3
  export { default as baseStaging } from './baseStaging';
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "networks": [
3
3
  "base",
4
- "baseSepolia",
5
4
  "baseStaging"
6
5
  ],
7
- "generatedAt": "2026-06-22T02:43:51.896Z"
6
+ "generatedAt": "2026-07-15T15:12:32.176Z"
8
7
  }
@@ -1,3 +1,2 @@
1
1
  export { default as base } from './base.json';
2
- export { default as baseSepolia } from './baseSepolia.json';
3
2
  export { default as baseStaging } from './baseStaging.json';
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-06-22T02:43:51.983Z",
2
+ "generatedAt": "2026-07-15T15:12:32.185Z",
3
3
  "codeToHash": {
4
4
  "AED": "0x4dab77a640748de8588de6834d814a344372b205265984b969f3e97060955bfa",
5
5
  "ARS": "0x8fd50654b7dd2dc839f7cab32800ba0c6f7f66e1ccf89b21c09405469c2175ec",
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-06-22T02:43:51.986Z",
2
+ "generatedAt": "2026-07-15T15:12:32.189Z",
3
3
  "network": "base",
4
4
  "feeds": [
5
5
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zkp2p/contracts-v2",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
4
  "description": "ZKP2P V2 smart contract interfaces and utilities",
5
5
  "main": "./_cjs/index.js",
6
6
  "module": "./_esm/index.js",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "network": "base",
3
3
  "chainId": "8453",
4
- "generatedAt": "2026-06-22T02:43:51.974Z",
4
+ "generatedAt": "2026-07-15T15:12:36.002Z",
5
5
  "methods": {
6
6
  "venmo": {
7
7
  "paymentMethodHash": "0x90262a3db0edd0be2369c6b28f9e8511ec0bac7136cefbada0880602f87e7268",
@@ -104,30 +104,6 @@
104
104
  "timestampBuffer": 30,
105
105
  "providerHashes": []
106
106
  },
107
- "zelle-citi": {
108
- "paymentMethodHash": "0x817260692b75e93c7fbc51c71637d4075a975e221e1ebc1abeddfabd731fd90d",
109
- "currencies": [
110
- "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e"
111
- ],
112
- "timestampBuffer": 30,
113
- "providerHashes": []
114
- },
115
- "zelle-chase": {
116
- "paymentMethodHash": "0x6aa1d1401e79ad0549dced8b1b96fb72c41cd02b32a7d9ea1fed54ba9e17152e",
117
- "currencies": [
118
- "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e"
119
- ],
120
- "timestampBuffer": 30,
121
- "providerHashes": []
122
- },
123
- "zelle-bofa": {
124
- "paymentMethodHash": "0x4bc42b322a3ad413b91b2fde30549ca70d6ee900eded1681de91aaf32ffd7ab5",
125
- "currencies": [
126
- "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e"
127
- ],
128
- "timestampBuffer": 30,
129
- "providerHashes": []
130
- },
131
107
  "paypal": {
132
108
  "paymentMethodHash": "0x3ccc3d4d5e769b1f82dc4988485551dc0cd3c7a3926d7d8a4dde91507199490f",
133
109
  "currencies": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "network": "base_staging",
3
- "generatedAt": "2026-06-22T02:43:51.974Z",
3
+ "generatedAt": "2026-07-15T15:12:36.004Z",
4
4
  "methods": {
5
5
  "venmo": {
6
6
  "paymentMethodHash": "0x90262a3db0edd0be2369c6b28f9e8511ec0bac7136cefbada0880602f87e7268",
@@ -103,30 +103,6 @@
103
103
  "timestampBuffer": 30,
104
104
  "providerHashes": []
105
105
  },
106
- "zelle-citi": {
107
- "paymentMethodHash": "0x817260692b75e93c7fbc51c71637d4075a975e221e1ebc1abeddfabd731fd90d",
108
- "currencies": [
109
- "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e"
110
- ],
111
- "timestampBuffer": 30,
112
- "providerHashes": []
113
- },
114
- "zelle-chase": {
115
- "paymentMethodHash": "0x6aa1d1401e79ad0549dced8b1b96fb72c41cd02b32a7d9ea1fed54ba9e17152e",
116
- "currencies": [
117
- "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e"
118
- ],
119
- "timestampBuffer": 30,
120
- "providerHashes": []
121
- },
122
- "zelle-bofa": {
123
- "paymentMethodHash": "0x4bc42b322a3ad413b91b2fde30549ca70d6ee900eded1681de91aaf32ffd7ab5",
124
- "currencies": [
125
- "0xc4ae21aac0c6549d71dd96035b7e0bdb6c79ebdba8891b666115bc976d16a29e"
126
- ],
127
- "timestampBuffer": 30,
128
- "providerHashes": []
129
- },
130
106
  "paypal": {
131
107
  "paymentMethodHash": "0x3ccc3d4d5e769b1f82dc4988485551dc0cd3c7a3926d7d8a4dde91507199490f",
132
108
  "currencies": [
@@ -1,5 +1,4 @@
1
1
  // Typed re-exports for payment methods
2
2
  export { default as base } from './base';
3
- export { default as baseSepolia } from './baseSepolia';
4
3
  export { default as baseStaging } from './baseStaging';
5
4
  export { default as lookups } from './lookups';
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "networks": [
3
3
  "base",
4
- "baseSepolia",
5
4
  "baseStaging"
6
5
  ],
7
- "generatedAt": "2026-06-22T02:43:51.974Z"
6
+ "generatedAt": "2026-07-15T15:12:36.004Z"
8
7
  }
@@ -6,10 +6,9 @@ export type { PaymentMethodConfig, NetworkPaymentMethods };
6
6
 
7
7
  // Network-specific payment method exports
8
8
  export { default as base } from './base.json';
9
- export { default as baseSepolia } from './baseSepolia.json';
10
9
  export { default as baseStaging } from './baseStaging.json';
11
10
 
12
- // Cross-network lookups (name<->hash mappings, Zelle helpers)
11
+ // Cross-network name-to-hash and hash-to-name lookups
13
12
  export { default as lookups } from './lookups.json';
14
13
 
15
14
  // Helper function to get payment method config for a specific network and method
@@ -25,6 +24,5 @@ export function getPaymentMethodConfig(network: string, paymentMethod: string):
25
24
  // Export all networks as a single object for convenience
26
25
  export const paymentMethods = {
27
26
  base: require('./base.json'),
28
- baseSepolia: require('./baseSepolia.json'),
29
27
  baseStaging: require('./baseStaging.json')
30
28
  };
@@ -3,8 +3,6 @@ export type PaymentMethodLookups = {
3
3
  generatedAt: string;
4
4
  nameToHash: Record<string, string>;
5
5
  hashToName: Record<string, string>;
6
- zelleVariantHashes: string[];
7
- zelleUnspecifiedHash: string;
8
6
  };
9
7
  declare const value: PaymentMethodLookups;
10
8
  export default value;
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-06-22T02:43:51.975Z",
2
+ "generatedAt": "2026-07-15T15:12:36.004Z",
3
3
  "nameToHash": {
4
4
  "venmo": "0x90262a3db0edd0be2369c6b28f9e8511ec0bac7136cefbada0880602f87e7268",
5
5
  "revolut": "0x617f88ab82b5c1b014c539f7e75121427f0bb50a4c58b187a238531e7d58605d",
@@ -7,9 +7,6 @@
7
7
  "wise": "0x554a007c2217df766b977723b276671aee5ebb4adaea0edb6433c88b3e61dac5",
8
8
  "mercadopago": "0xa5418819c024239299ea32e09defae8ec412c03e58f5c75f1b2fe84c857f5483",
9
9
  "zelle": "0xf752c7d19698ecb0bb8988abf9b9a53a4c3657f3bc8850a6fb59fdf3e3ce8cd3",
10
- "zelle-citi": "0x817260692b75e93c7fbc51c71637d4075a975e221e1ebc1abeddfabd731fd90d",
11
- "zelle-chase": "0x6aa1d1401e79ad0549dced8b1b96fb72c41cd02b32a7d9ea1fed54ba9e17152e",
12
- "zelle-bofa": "0x4bc42b322a3ad413b91b2fde30549ca70d6ee900eded1681de91aaf32ffd7ab5",
13
10
  "paypal": "0x3ccc3d4d5e769b1f82dc4988485551dc0cd3c7a3926d7d8a4dde91507199490f",
14
11
  "monzo": "0x62c7ed738ad3e7618111348af32691b5767777fbaf46a2d8943237625552645c",
15
12
  "alipay": "0xcac9daea62d7b89d75ac73af4ee14dcf25721012ae82b568c2ea5c808eaa04ff",
@@ -22,18 +19,11 @@
22
19
  "0x554a007c2217df766b977723b276671aee5ebb4adaea0edb6433c88b3e61dac5": "wise",
23
20
  "0xa5418819c024239299ea32e09defae8ec412c03e58f5c75f1b2fe84c857f5483": "mercadopago",
24
21
  "0xf752c7d19698ecb0bb8988abf9b9a53a4c3657f3bc8850a6fb59fdf3e3ce8cd3": "zelle",
25
- "0x817260692b75e93c7fbc51c71637d4075a975e221e1ebc1abeddfabd731fd90d": "zelle-citi",
26
- "0x6aa1d1401e79ad0549dced8b1b96fb72c41cd02b32a7d9ea1fed54ba9e17152e": "zelle-chase",
27
- "0x4bc42b322a3ad413b91b2fde30549ca70d6ee900eded1681de91aaf32ffd7ab5": "zelle-bofa",
28
22
  "0x3ccc3d4d5e769b1f82dc4988485551dc0cd3c7a3926d7d8a4dde91507199490f": "paypal",
29
23
  "0x62c7ed738ad3e7618111348af32691b5767777fbaf46a2d8943237625552645c": "monzo",
30
24
  "0xcac9daea62d7b89d75ac73af4ee14dcf25721012ae82b568c2ea5c808eaa04ff": "alipay",
31
- "0x5908bb0c9b87763ac6171d4104847667e7f02b4c47b574fe890c1f439ed128bb": "chime"
32
- },
33
- "zelleVariantHashes": [
34
- "0x817260692b75e93c7fbc51c71637d4075a975e221e1ebc1abeddfabd731fd90d",
35
- "0x6aa1d1401e79ad0549dced8b1b96fb72c41cd02b32a7d9ea1fed54ba9e17152e",
36
- "0x4bc42b322a3ad413b91b2fde30549ca70d6ee900eded1681de91aaf32ffd7ab5"
37
- ],
38
- "zelleUnspecifiedHash": "0x7a656c6c65000000000000000000000000000000000000000000000000000000"
25
+ "0x5908bb0c9b87763ac6171d4104847667e7f02b4c47b574fe890c1f439ed128bb": "chime",
26
+ "0xd9ff4fd6b39a3e3dd43c41d05662a5547de4a878bc97a65bcb352ade493cdc6b": "n26",
27
+ "0xaea63ef983458674f54ee50cdaa7b09d80a5c6c03ed505f51c90b0f2b54abb01": "luxon"
28
+ }
39
29
  }