Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CU-86a5z8qhx-BS Lib - Replace base url to access ETH data provider so… #131

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@cityofzion/bs-ethereum",
"comment": "Update Moralis URL",
"type": "patch"
}
],
"packageName": "@cityofzion/bs-ethereum"
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import Transport from '@ledgerhq/hw-transport'
import { BSEthereum } from '../BSEthereum'
import { BSEthereumConstants } from '../constants/BSEthereumConstants'

let ledgerService: EthersLedgerServiceEthereum
let ledgerService: EthersLedgerServiceEthereum<'ethereum'>
let transport: Transport
let bsEthereum: BSEthereum
let bsEthereum: BSEthereum<'ethereum'>

describe.skip('EthersLedgerServiceEthereum', () => {
beforeAll(async () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ interface MoralisTokenMetadataResponse {
}

export class MoralisBDSEthereum extends RpcBDSEthereum {
static BASE_URL = 'https://nxlrja2d1a.execute-api.us-east-1.amazonaws.com/production'
static BASE_URL = 'https://dora.coz.io/api/v2/meta'

static SUPPORTED_CHAINS = [
'1',
Expand Down
Loading