Skip to content

Commit 5cdca0b

Browse files
committed
fix(build): remove did:ethr:rsk:testnet config, tests and examples
1 parent c44720d commit 5cdca0b

File tree

3 files changed

+2
-23
lines changed

3 files changed

+2
-23
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,13 @@ curl -X GET http://localhost:8081/1.0/identifiers/did:nacl:Md8JiMIwsapml_FtQ2ngn
3838
* `did:ethr:goerli:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736`
3939
* `did:ethr:kovan:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736`
4040
* `did:ethr:rsk:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736`
41-
* `did:ethr:rsk:testnet:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736`
4241
* `did:ethr:0x1:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736`
4342
* `did:ethr:0x3:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736`
4443
* `did:ethr:0x4:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736`
4544
* `did:ethr:0x5:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736`
4645
* `did:ethr:0x2a:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736`
4746
* `did:ethr:0x1e:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736`
48-
* `did:ethr:0x1f:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736`
49-
* `did:web:uport.me`
50-
* `did:web:data-vault.eu:u:zi4xgcHtYo7fh_KAURaO1beG2v6WN9ImVnQ30CBDEJjLrw`
47+
* `did:web:pulsar.veramo.io`
48+
* `did:web:did.actor:alice`
5149
* `did:https:uportlandia.uport.me`
5250
* `did:nacl:Md8JiMIwsapml_FtQ2ngnGftNP5UmVCAUuhnLyAsPxI`

src/__tests__/ethr.test.js

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -206,20 +206,6 @@ describe('did:ethr driver', () => {
206206
expect(response.body.didDocument).toHaveProperty('verificationMethod')
207207
})
208208

209-
it('did:ethr:rsk:testnet:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736', async () => {
210-
expect.assertions(1)
211-
const did = 'did:ethr:rsk:testnet:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736'
212-
const response = await request(app).get(`/1.0/identifiers/${did}`)
213-
expect(response.body.didDocument).toHaveProperty('verificationMethod')
214-
})
215-
216-
it('did:ethr:0x1f:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736', async () => {
217-
expect.assertions(1)
218-
const did = 'did:ethr:0x1f:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736'
219-
const response = await request(app).get(`/1.0/identifiers/${did}`)
220-
expect(response.body.didDocument).toHaveProperty('verificationMethod')
221-
})
222-
223209
it('did:ethr:matic:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736', async () => {
224210
expect.assertions(1)
225211
const did = 'did:ethr:matic:0x3b0BC51Ab9De1e5B7B6E34E5b960285805C41736'

src/app.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ const providerConfig = {
1010
infuraProjectId: infuraId,
1111
networks: [
1212
{ name: 'rsk', chainId: 30, rpcUrl: 'https://did.rsk.co:4444' },
13-
{
14-
name: 'rsk:testnet',
15-
chainId: 31,
16-
rpcUrl: 'https://did.testnet.rsk.co:4444'
17-
},
1813
{
1914
chainId: '0x03c301',
2015
rpcUrl: 'https://rpc.sigma1.artis.network'

0 commit comments

Comments
 (0)