Skip to content

Commit 70aff91

Browse files
committed
refactor: hilt client fallout
1 parent 02af9fc commit 70aff91

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/aws/aws-sdk-go-v2/config v1.32.26
88
github.com/aws/aws-sdk-go-v2/credentials v1.19.25
99
github.com/aws/aws-sdk-go-v2/service/s3 v1.104.1
10-
github.com/fil-forge/hilt v0.0.1-0.20260716084626-7ddddf09ecc0
10+
github.com/fil-forge/hilt v0.0.1-0.20260722134557-dfe5f73edee5
1111
github.com/fil-forge/indexing-service v1.13.5-0.20260619142411-efe3f5fab717
1212
github.com/fil-forge/libforge v0.0.0-20260713100115-a3aa293b990c
1313
github.com/fil-forge/smelt v0.0.0-20260720130429-63116166a06c

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,8 @@ github.com/fil-forge/go-ipni-tools v0.0.0-20260519194815-545b9421aec0 h1:HAfXUPv
246246
github.com/fil-forge/go-ipni-tools v0.0.0-20260519194815-545b9421aec0/go.mod h1:3NRV/7wc4/0uzzrGdI7NoN/yeF1UvqKRwMyjBqGc5s0=
247247
github.com/fil-forge/go-ucanto v0.0.0-20260507172450-5cb5d073f8ab h1:2J2cDThqTKP6/0k3SfdlSxfyPa3aLqjTYnmvbEcryfg=
248248
github.com/fil-forge/go-ucanto v0.0.0-20260507172450-5cb5d073f8ab/go.mod h1:lZF3UXZ2hGLKYmXdquG50JqI9pRlUrV6lubGtgOYfwc=
249-
github.com/fil-forge/hilt v0.0.1-0.20260716084626-7ddddf09ecc0 h1:dma5d9PcBPyvMqZTOmoGUeZBKvnZztdko4hWqBpX7ds=
250-
github.com/fil-forge/hilt v0.0.1-0.20260716084626-7ddddf09ecc0/go.mod h1:zzPrQQ/VhgShDIi9IsfeFdiNXJftACRXxUaJI6opW9s=
249+
github.com/fil-forge/hilt v0.0.1-0.20260722134557-dfe5f73edee5 h1:rHVjr8hmju5fsN/SRu+HFbDNRgc4CSyb20FXoL1ISW0=
250+
github.com/fil-forge/hilt v0.0.1-0.20260722134557-dfe5f73edee5/go.mod h1:zzPrQQ/VhgShDIi9IsfeFdiNXJftACRXxUaJI6opW9s=
251251
github.com/fil-forge/indexing-service v1.13.5-0.20260619142411-efe3f5fab717 h1:Wke8qgaDgy7DGaIS28VpHip+YHSdQP1hGNEZTrXXzb4=
252252
github.com/fil-forge/indexing-service v1.13.5-0.20260619142411-efe3f5fab717/go.mod h1:wFcakLohOqpMRkJzWRdGFGHRFpGB+PpEMCm9wkt2cqU=
253253
github.com/fil-forge/libforge v0.0.0-20260713100115-a3aa293b990c h1:ElgAxd+08QifEpnhO1vH58A/CD+i/Hdic6B+k3W/QPY=

module.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ func provideAuthServiceClient(cfg config.Config, id ServiceIdentity, logger *zap
262262
}
263263
proofs = ucanlib.NewContainerProofStore(ct)
264264
}
265-
return hiltclient.New(authServiceDID, *authServiceURL, id.Signer, proofs, hiltclient.WithLogger(logger))
265+
return hiltclient.New(authServiceDID, *authServiceURL, id.Signer, hiltclient.WithBaseProofs(proofs), hiltclient.WithLogger(logger))
266266
}
267267

268268
// provideKeyProofs is the per-access-key delegation store registry: the IAM

0 commit comments

Comments
 (0)