@@ -533,7 +533,7 @@ export const defaultPackages = {
533533 http: " wrap://plugin/http" ,
534534 httpResolver: " wrap://ens/http-resolver.polywrap.eth" ,
535535 logger: " wrap://plugin/logger" ,
536- fileSystem: " wrap://ens /fs.polywrap.eth " ,
536+ fileSystem: " wrap://plugin /fs" ,
537537 fileSystemResolver: " wrap://ens/fs-resolver.polywrap.eth" ,
538538 ipfsResolver: " wrap://ens/ipfs-resolver.polywrap.eth" ,
539539 concurrent: " wrap://plugin/concurrent" ,
@@ -544,6 +544,7 @@ export const defaultInterfaces = {
544544 concurrent: " wrap://ens/goerli/interface.concurrent.wrappers.eth" ,
545545 logger: " wrap://ens/wrappers.polywrap.eth:logger@1.0.0" ,
546546 http: " wrap://ens/wrappers.polywrap.eth:http@1.1.0" ,
547+ fileSystem: " wrap://ens/wrappers.polywrap.eth:file-system@1.0.0" ,
547548};
548549
549550export const getDefaultConfig = (): ClientConfig <Uri > => {
@@ -588,6 +589,14 @@ export const getDefaultConfig = (): ClientConfig<Uri> => {
588589 from: new Uri (defaultInterfaces .http ),
589590 to: new Uri (defaultPackages .http ),
590591 },
592+ {
593+ from: new Uri (" wrap://ens/fs.polywrap.eth" ),
594+ to: new Uri (defaultInterfaces .fileSystem ),
595+ },
596+ {
597+ from: new Uri (defaultInterfaces .fileSystem ),
598+ to: new Uri (defaultPackages .fileSystem ),
599+ },
591600 ],
592601 interfaces: [
593602 {
0 commit comments