Skip to content

Commit

Permalink
fix: repalce goerli with sepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
nickreynolds committed Jun 12, 2024
1 parent f12db72 commit 917343c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion __tests__/shared/myPluginLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default (testContext: {

it('should foo', async () => {
const result = await agent.myPluginFoo({
did: 'did:ethr:goerli:0xb09b66026ba5909a7cfe99b76875431d2b8d5190',
did: 'did:ethr:sepolia:0xb09b66026ba5909a7cfe99b76875431d2b8d5190',
foo: 'lorem',
bar: 'ipsum',
})
Expand Down
8 changes: 4 additions & 4 deletions agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ didManager:
$require: '@veramo/data-store#DIDStore' # __TEMPLATE__: or you can use './build#MyDIDStore'
$args:
- $ref: /dbConnection
defaultProvider: did:ethr:goerli
defaultProvider: did:ethr:sepolia
providers:
# __TEMPLATE__: you can install your customized DID provider like so
did:my:
Expand All @@ -246,12 +246,12 @@ didManager:
rpcUrl: https://mainnet.infura.io/v3/5ffc47f65c4042ce847ef66a3fa70d4c
gas: 1000001
ttl: 31104001
did:ethr:goerli:
did:ethr:sepolia:
$require: '@veramo/did-provider-ethr#EthrDIDProvider'
$args:
- defaultKms: local
network: goerli
rpcUrl: https://goerli.infura.io/v3/5ffc47f65c4042ce847ef66a3fa70d4c
network: sepolia
rpcUrl: https://sepolia.infura.io/v3/5ffc47f65c4042ce847ef66a3fa70d4c
gas: 1000001
ttl: 31104001
did:web:
Expand Down

0 comments on commit 917343c

Please sign in to comment.