Skip to content

Commit

Permalink
update data store URLs and make the token symbol nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
samuel committed Mar 21, 2024
1 parent 9fbfc98 commit 62d3795
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ export class BootstrapService {
clientSecret: randomBytes(42).toString('hex'),
dataStore: {
entity: {
dataUrl: 'http://127.0.0.1:4200/api/data-store',
signatureUrl: 'http://127.0.0.1:4200/api/data-store',
dataUrl: 'http://127.0.0.1:3001/storage/2/entity',
signatureUrl: 'http://127.0.0.1:3001/storage/2/entity',
keys: []
},
policy: {
dataUrl: 'http://127.0.0.1:4200/api/data-store',
signatureUrl: 'http://127.0.0.1:4200/api/data-store',
dataUrl: 'http://127.0.0.1:3001/storage/2/policy',
signatureUrl: 'http://127.0.0.1:3001/storage/2/policy',
keys: []
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ type AddressBookAccount = {
type Token = {
id: string
address: Address
symbol: string
symbol: string | null
chainId: number
decimals: number
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const addressBookAccountEntitySchema = z.object({
export const tokenEntitySchema = z.object({
id: z.string(),
address: addressSchema,
symbol: z.string(),
symbol: z.string().nullable(),
chainId: z.number(),
decimals: z.number()
})
Expand Down

0 comments on commit 62d3795

Please sign in to comment.