We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d36f413 commit a54545dCopy full SHA for a54545d
sdk/src/gateway/layerzero.ts
@@ -113,6 +113,10 @@ export class LayerZeroGatewayClient extends GatewayApiClient {
113
return this.l0Client.getEidForChain(chainKey);
114
}
115
116
+ async getOftAddressForChain(chainKey: string): Promise<string | null> {
117
+ return this.l0Client.getOftAddressForChain(chainKey);
118
+ }
119
+
120
async getQuote(params: GetQuoteParams): Promise<{
121
params: GetQuoteParams;
122
onrampQuote?: GatewayQuote & GatewayTokensInfo;
0 commit comments