Skip to content

Commit

Permalink
fix: Bump default resource gas units
Browse files Browse the repository at this point in the history
  • Loading branch information
Eengineer1 committed Oct 24, 2024
1 parent a52a851 commit ae8860d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export class ResourceModule extends AbstractCheqdSDKModule {
static async generateCreateResourceImageFees(feePayer: string, granter?: string): Promise<DidStdFee> {
return {
amount: [ResourceModule.fees.DefaultCreateResourceImageFee],
gas: '1200000',
gas: '2000000',
payer: feePayer,
granter: granter,
} as DidStdFee;
Expand All @@ -227,7 +227,7 @@ export class ResourceModule extends AbstractCheqdSDKModule {
static async generateCreateResourceJsonFees(feePayer: string, granter?: string): Promise<DidStdFee> {
return {
amount: [ResourceModule.fees.DefaultCreateResourceJsonFee],
gas: '1200000',
gas: '2000000',
payer: feePayer,
granter: granter,
} as DidStdFee;
Expand All @@ -236,7 +236,7 @@ export class ResourceModule extends AbstractCheqdSDKModule {
static async generateCreateResourceDefaultFees(feePayer: string, granter?: string): Promise<DidStdFee> {
return {
amount: [ResourceModule.fees.DefaultCreateResourceDefaultFee],
gas: '1200000',
gas: '2000000',
payer: feePayer,
granter: granter,
} as DidStdFee;
Expand Down

0 comments on commit ae8860d

Please sign in to comment.