Skip to content

Commit

Permalink
Fix RgbSwapStrategy interface (#444)
Browse files Browse the repository at this point in the history
  • Loading branch information
josediegorobles authored Dec 26, 2023
1 parent 7b002a3 commit 86f7928
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/web/rgb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -812,10 +812,10 @@ export interface RgbOfferRequest {
expireAt?: number;
}

export interface RgbSwapStrategy {
auction?: string,
p2p?: string,
hotswap?: string,
export enum RgbSwapStrategy {
Auction = "auction",
P2P = "p2p",
HotSwap = "hotswap",
}
export interface RgbAuctionOfferRequest {
signKeys: string[],
Expand Down

0 comments on commit 86f7928

Please sign in to comment.