mirror of
https://github.com/status-im/airbyte-custom-connector.git
synced 2025-02-20 04:38:22 +00:00
wallet-fetcher: allowing multiple wallet
Signed-off-by: Alexis Pentori <alexis@status.im>
This commit is contained in:
parent
0bd61451e5
commit
3bbc5be5f0
@ -77,7 +77,7 @@ class SourceWalletFetcher(AbstractSource):
|
|||||||
for wallet in config["wallets"]:
|
for wallet in config["wallets"]:
|
||||||
tokens.append(
|
tokens.append(
|
||||||
Token(
|
Token(
|
||||||
wallet_address=wallet,
|
wallet_address=wallet['address'],
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
return tokens
|
return tokens
|
||||||
|
@ -11,4 +11,12 @@ connectionSpecification:
|
|||||||
description: "List of wallet to scan"
|
description: "List of wallet to scan"
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
|
type: object
|
||||||
|
additionalProperties: true
|
||||||
|
properties:
|
||||||
|
address:
|
||||||
|
title: Address
|
||||||
|
type: string
|
||||||
|
name:
|
||||||
|
title: Name
|
||||||
type: string
|
type: string
|
||||||
|
Loading…
x
Reference in New Issue
Block a user