Skip to content

Commit d6257ba

Browse files
authored
chore: add waterballoons dev environments (#39)
* chore: add waterballoons dev environments * chore: fix lint
1 parent 1ed232f commit d6257ba

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

packages/snap/snap.manifest.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "git+https://github.com/MetaMask/snap-institutional-wallet.git"
88
},
99
"source": {
10-
"shasum": "fxx/F8vsR2zv5EvcSLSyb2tXsCvDAYQx/2vclozmAzA=",
10+
"shasum": "te0cF7V3GhkvtPTPtiZxEDiUf1hnEk1WTSOhewQswWg=",
1111
"location": {
1212
"npm": {
1313
"filePath": "dist/bundle.js",
@@ -26,6 +26,9 @@
2626
"https://ui-preprod-v2.qa.zodia.io": {},
2727
"https://v2.custody.zodia.io": {},
2828
"https://console.fireblocks.io": {},
29+
"https://local.waterballoons.xyz:4200": {},
30+
"https://dev4-console.waterballoons.xyz": {},
31+
"https://dev10-console.waterballoons.xyz": {},
2932
"https://console.dev.mpcvault.com": {},
3033
"https://saturn-custody-ui.metamask-institutional.io": {},
3134
"https://console.mpcvault.com": {},
@@ -56,6 +59,9 @@
5659
"https://ui-preprod-v2.qa.zodia.io",
5760
"https://v2.custody.zodia.io",
5861
"https://console.fireblocks.io",
62+
"https://local.waterballoons.xyz:4200",
63+
"https://dev4-console.waterballoons.xyz",
64+
"https://dev10-console.waterballoons.xyz",
5965
"https://console.dev.mpcvault.com",
6066
"https://saturn-custody-ui.metamask-institutional.io",
6167
"https://console.mpcvault.com",

packages/snap/src/lib/custodian-types/custodianMetadata.ts

+42
Original file line numberDiff line numberDiff line change
@@ -226,6 +226,48 @@ export const custodianMetadata: (
226226
onboardingUrl: 'https://console.fireblocks.io/v2/',
227227
allowedOnboardingDomains: ['console.fireblocks.io'],
228228
},
229+
{
230+
refreshTokenUrl: 'https://local.waterballoons.xyz:4200/v1/auth/access',
231+
name: 'waterballoons-local',
232+
displayName: 'Waterballoons',
233+
production: false,
234+
apiBaseUrl: 'https://local.waterballoons.xyz:4200',
235+
apiVersion: CustodianType.ECA1,
236+
custodianPublishesTransaction: true,
237+
iconUrl:
238+
'https://metamask-institutional.io/custodian-icons/neptune-icon.svg',
239+
isManualTokenInputSupported: false,
240+
onboardingUrl: 'https://local.waterballoons.xyz:4200',
241+
allowedOnboardingDomains: ['local.waterballoons.xyz:4200'],
242+
},
243+
{
244+
refreshTokenUrl: 'https://local.waterballoons.xyz:4200/v1/auth/access',
245+
name: 'waterballoons-dev10',
246+
displayName: 'Waterballoons 10',
247+
production: false,
248+
apiBaseUrl: 'https://dev4-console-api.waterballoons.xyz',
249+
apiVersion: CustodianType.ECA1,
250+
custodianPublishesTransaction: true,
251+
iconUrl:
252+
'https://metamask-institutional.io/custodian-icons/neptune-icon.svg',
253+
isManualTokenInputSupported: false,
254+
onboardingUrl: 'https://dev10-console.waterballoons.xyz',
255+
allowedOnboardingDomains: ['dev10-console.waterballoons.xyz'],
256+
},
257+
{
258+
refreshTokenUrl: 'https://local.waterballoons.xyz:4200/v1/auth/access',
259+
name: 'waterballoons-dev4',
260+
displayName: 'Waterballoons 4',
261+
production: false,
262+
apiBaseUrl: 'https://dev4-console-api.waterballoons.xyz',
263+
apiVersion: CustodianType.ECA1,
264+
custodianPublishesTransaction: true,
265+
iconUrl:
266+
'https://metamask-institutional.io/custodian-icons/neptune-icon.svg',
267+
isManualTokenInputSupported: false,
268+
onboardingUrl: 'https://dev4-console.waterballoons.xyz',
269+
allowedOnboardingDomains: ['dev4-console.waterballoons.xyz'],
270+
},
229271
{
230272
refreshTokenUrl: 'https://zapi.custody.zodia.io/oauth/token',
231273
name: 'zodia-prod',

0 commit comments

Comments
 (0)